C++
C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 760 public repositories matching this topic...
I had a typo in my profile file:
includes(cmake_3_16)
[build_requires]
doxygen/1.8.15@company/stable
Where it should have been include instead of includes.
When running Conan, I got the following error message:
ERROR: Error reading 'documentation' profile: Error parsing the profile text file: not enough values to unpack (expected 2, got 1)
At least I knew
Include doc comments
The Khronos reference page contains description of parameters and description of the behavior for every function. Wouldn't it be possible to add doc comments for the functions, so IDE can show it? I understand the function description is a bit cumbersome, as one description is usually related to multiple functions with similar functionality, however parameters description would help a lot.
I am c
- incremental CTU (on the fly CTU with skip files) feature usage configuration, limitations when ready
- web UI usage
- how to compare the previous (marked by tag, use the date filter) results of two runs (same run?)
- more simple and advanced use case examples
- CI job for a quality review (check for high severity results and fail the job if any)
- usage of the upcoming f
Is your feature request related to a problem? Please describe.
:help vimspector should show the usage and configuration documentation.
Describe the solution you'd like
Ideally share some documentation with the website of the readme (like ycm).
Describe alternatives you've considered
Put a url linkt to the website. just a simple overview and link. etc.
-
Updated
Jul 1, 2020 - Python
-
Updated
Jul 2, 2020 - Python
Currently when choosing any of the other output formats it's not possible to get the text report printed to stdout or even a file.
I've tried the following, but neither work.
$ gcovr --sonarqube coverage.xml --output
usage: gcovr [options] [search_paths...]
gcovr: error: argument -o/--output: expected one argument
$ gcovr --sonarqube coverage.xml --output -
(WARNING) --output='-' op
Hi,
It's possible that I'm just misunderstanding the documentation here, but in the docs it says that using the --test flag on the build command wil make cget "try to run the check target" after building.
Does this mean that it will try to execute the resulting executable that is generated from building the check target? If so, this does not seem to happen.
Or am I misunderstand
Hi,
I'm trying to use the RQ kernel. First of all, in its help file I don't understand if I should put alpha or log_alpha as an input parameter. If the latter, is the logarithm natural or base 10?
Second of all, I checked R&W, and their formula 4.19 is not exactly the same as the one in george. Is it an issue, or are they mathematically equivalent?
Thanks in advance
Cheers
-
Updated
Jun 9, 2020 - Python
-
Updated
May 24, 2020 - Python
-
Updated
Oct 31, 2019 - Python
In the README it states that in your .clang file you want to point to a project specific compilation database you need to specify it like so:
compilation_database = "<path to compilation_database>"
Actually you need to specify to the directory that contains it, rather than to the database itself.
i.e. if the file sits at catkin_ws/build/compile_commands.json your .clang file should s
-
Updated
Jun 2, 2020 - Python
-
Updated
Jun 28, 2020 - Python
The documentation for the 'cflags' feature in the latest Boost Build docs says:
"For cflags that is both the C and C++ compilers, for cxxflags that is the C++ compiler"
but this is not reflected in the common.handle-options rule, which has 'cflags' being set for the toolset's 'compile.c' rule rather than for the toolset's 'compile' rule, while the 'compileflags' feature, which is no longer d
-
Updated
Jul 3, 2020 - Python
-
Updated
Jul 6, 2020 - Python
Write a class method recursivePrint(int count) of a class Recursion which prints "z y x w "
on the first line, "z y x " on the second line, ..., "z " on the fourth line by recursion if count is 4. If
count is n (n <= 26), n lines should be printed and the first line contains "z y x ...? ", where "?" is the
nth letter starting from "z". Note that there is a space after each letter.
Test it usin
add setup.py file
Citing the doc: "The setup script is the centre of all activity in building, distributing, and installing modules using the Distutils."
source: https://docs.python.org/3/distutils/setupscript.html
For the Python community the setup.py file is a standard to know how to set up the environment just out of the box. Instead of running the right scripts in the order it would be better to have one kn
-
Updated
Dec 2, 2019 - Python
Stefan Behnel wrote: