cpp20

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 312 public repositories matching this topic...
-
Updated
Oct 19, 2020 - C++
It would be wonderful if I could inspect the contents of thrust containers: host_vector
and device_vector
in GDB (and more importantly, in VSCode). GDB allows customizing this.
It would save a lot of time if I could inspect device vectors without having to bring them to the host (e.g. the pretty printer script would do that behind the
-
Updated
Oct 14, 2020 - C++
-
Updated
Oct 19, 2020 - C++
-
Updated
Oct 12, 2020 - C++
-
Updated
Oct 19, 2020
An assignment within an if-statement introduced in [bac2060e991582063775d34eaeb40822810e4349] triggers a warning with Clang:
In file included from /thrust/cub/block/../iterator/cache_modified_input_iterator.cuh:42:
/thrust/cub/block/../iterator/../util_device.cuh:323:35: warning: using
-
Updated
Oct 15, 2020 - C++
-
Updated
Oct 17, 2020 - C++
-
Updated
Oct 12, 2020 - C++
-
Updated
Jun 27, 2020 - C++
I've recently come to realize that the 'one-size-fits-all' mega-snippets on marzer.github.io/tomlplusplus aren't necessarily useful for everyone, and I should break them up into smaller sub-examples. I'd be totally happy to accept help with this, though that may be wishful thinking!
-
Updated
Oct 17, 2020 - C++
quantity_point
should be updated to mirror the latest changes to quantity
and provide interoperability with other libraries (i.e. std::chrono::time_point
).
It would be nice if we could somehow pass a required Vulkan version (both instance and physical device) as well as required extensions (instance and device) to app
.
The best place would probably be in frame_config
since both frame and app have access to it.
-
Updated
Oct 4, 2020 - C++
-
Updated
Aug 30, 2020 - C++
-
Updated
Dec 29, 2019 - C++
Code:
#include <seqan3/argument_parser/all.hpp>
int main(int argc, char ** argv)
{
seqan3::argument_parser parser{"App", argc, argv, false};
parser.info.author = "Foo Bar";
parser.info.email = "foobar@example.com";
parser.info.short_copyright = "BSD 3-Clause License";
try
{
parser.parse();
}
catch (seqan3::argument_parser_error cons
-
Updated
Jun 3, 2020 - C++
-
Updated
Oct 18, 2020 - C++
-
Updated
Oct 16, 2020 - C++
-
Updated
Oct 12, 2020 - C++
Apparently it is possible to add Python modules to the game with the modloader. Unfortunately there is no documentation about the api.
The doc is great! Hoewever some areas are still missing.
C++11 intoduced raw string literals: https://en.cppreference.com/w/cpp/language/string_literal
It is useful in many different areas, like strings with quotes, multiline strings and for example windows paths without escaping backslashes:
The same cppreference link als