cpp14

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 1,345 public repositories matching this topic...
It's possible to instantiate an OSRM object in Javascript like this:
const osrmInstance = new OSRM({
algorithm: 'CH',
dataset_name: 'foo',
mmap_memory: true
});
This should throw an error - setting mmap_memory
should require supplying a path
, and this is incompatible with using dataset_name
, which triggers using shared memory.
These opti
Hi. First of all, thanks for this work!
While working with this code is noticed some unexpected behavior, which is caused by a difference between documentation and code. Not sure which of the two are wrong.
According to https://nghttp2.org/documentation/types.html#c.nghttp2_on_data_chunk_recv_callback
The implementation of this function must return 0 if it succeeds. **If nonzero is return
I couldn't find this in the documentation or the FAQ: Is it possible to obtain the current test case's name from within that testcase's code? I mean, it should be, but how do we do it? That should be either in the FAQ or in some other relevant documentation file, IMHO.
We have now MSVC 2017 support, but we should really make sure that it keeps working by adding CI, for example AppVeyor.
As for Display the special operations generated by the compiler #224 discussion, the documentation will improve if we had a section describing the transformation of each featre and his limitations.
In particular for the special operation, to explain that only the operations that are really generated would appear in the transformation. This is due to the fact that the tool s based on the AST.
#ifdef BOOST_HANA_CONFIG_ENABLE_STRING_UDL
//////////////////////////////////////////////////////////////////////////
// _s user-defined literal
//////////////////////////////////////////////////////////////////////////
namespace literals {
template <typename CharT, CharT ...s>
constexpr auto operator"" _s() {
static_assert(std::is_same<Ch
-
Updated
May 10, 2020 - C++
-
Updated
Dec 27, 2019 - C++
This function would be nice, showing the total damage you did to your team (thus preventing you from taking a suspension for TK), and showing the damage your allies did to each other (Also giving information in case you are trolling, being able to ban allies.)
It's a pretty stupid function, but it's cool.
Discuss: https://www.unknowncheats.me/forum/counterstrike-global-offensive/307950-team
Add features list
I am sorry but I don't know how to put it into an Issue format, so I have to explain it plainly.
Dear contributors,
It seems that every source file in Vc library has the following copyright notice:
/* This file is part of the Vc library. {{{
Copyright © 2009-2015 XXX <xxx@example.com>
Redistribution and use in source and binary forms, with or without
modification, are permitte
hi, i am trying to install rpclib, but got a bit lost.
the version i am trying to install is the git cloned version from the master branch.
i follow the guide and execute the build commands. the documentation says
And that's it. If all goes well, your build output will be in the
output
directory.
i can find no direc
Improve CI
-
Updated
Apr 2, 2020 - C++
-
Updated
Feb 11, 2020 - C++
-
Updated
May 15, 2020 - Emacs Lisp
-
Updated
May 22, 2020 - C++
-
Updated
May 12, 2020 - C++
-
Updated
May 23, 2020 - C++
Add documentation
The Guidelines Support Library is sort-of documented in the C++ Core Guidelines, so one could argue that GSL implementations such as gsl-lite only need to document their configuration switches.
However, gsl-lite offers a variety of additional features which are currently undocumented (e.g. the gsl_HAVE_*
family of macro
Add Contributing
Add code of conduct
We have user-definable variadic dimensions now, but we need to develop some case studies we can document to guide users on how to take advantage of that. We probably also want some macros to simplify including new dimensions and making sure traits and things are auto-generated when a new dimension is defined.
If anyone comes up with something cool, post it here or in a PR and I'll include it in
Miscellaneous issues
Add Runnable links of the code below the example.
Use link name Run Code which links to a Online C++ complier conatining the example code.
Use Rextester as the Online C++ Compiler (If you have a better suggesstion please comment).
Follow below steps to generate the Run Code Link.
- Go to Rextester
- Copy or write the example
-
Updated
May 15, 2020 - C++
in example topolopy, when i execute "clear Graph", the message show "TypeError: Property 'clear' of object qan::FaceGraph_QML_70(0x7884400, "graph") is not a function",so i modify "void clear() noexcept;" to " Q_INVOKABLE void clear() noexcept;" in the file "qanGraph.h" 103 line ,but that still error.
-
Updated
Nov 16, 2019 - C++
The type of variable created by FIT_STATIC_FUNCTION
or FIT_STATIC_LAMBDA_FUNCTION
could be different. Perhaps a template alias such as static_function<F>
or static_lambda_function<F>
can be used by the user to know the exact type of the declared variable.
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