cplusplus

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
Here are 4,247 public repositories matching this topic...
-
Updated
May 26, 2020 - C++
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/foo",
"definitions": {
"foo": {
"type": "object",
"properties": {
"bar": {
"$ref": "bar.json#"
},
},
"required": [
"bar"
],
},
"title": "foo"
}
}
Running quicktype CLI with this Schema produces
Error
Summary
CouchDB keeps a list of purge infos to ensure that purges can be applied on a cluster without purged documents being re-introduced by internal replication.
It would be useful to make this list available for replication clients like PouchDB, who then could apply local purges on their own. I know PouchDB doesn’t implement purge just yet, but it’s something that folks will need befor
From conan-io/conan#6896
The information stored in the editable_packages.json
in the Conan cache contains only the path to the folder where the recipe is. As a consequence, if the file is not called conanfile.py
, Conan will fail to locate the recipe.
Take a look at this call graph. Now look at the source of that function and all the calls to methods of InboundLedger
, through the shared_ptr<InboundLedger>
named inbound
. Notice how the call gra
In the Evaluation doc in wiki, it incorrectly says Maidenhead (mls) can form words. Since MLS alternates pairs of letters and pairs numerals, it could only form EL33tt haxor words, and at least for the experienced user, or with a syntax checking interface, no letter/number ambiguity.
(MLS does have seams between fields and between squares so that adjacent places may be disimilar, but even OL
Issue Type
- Bug Report
- Feature Request
- Support Question
- Doc
Description
Information
The splash screen mechanism is not well documented since the plugin is not responsible of the resource copy into platforms. I had to check the cordova prepare
code in order to figure out how <splash>
tag is handled while I was trying to set an android vector (or svg
https://www.boost.org/doc/libs/1_71_0/libs/beast/doc/html/beast/using_websocket/timeouts.html says
The timeout features of the TCP or basic stream should not be used when working with a websocket stream.
and
`The timeouts on the websocket stream are incompatible with the timeouts used in the tcp_stream. When constructing a websocket stream from a tcp stream that has timeouts enabled, th
Bug Report
There are 107 files in the repo that contain CRLF line endings as opposed to LF.
Steps to Reproduce:
cd perspective
find . | grep -v dist | grep -v node_modules | xargs file | grep 'CRLF' | sed 's/:.*$//'
Expected Result:
above one-liner should return zero lines
Actual Result:
it returns 107 files with windows line endings
The Urho UI provides a method to set the cursor image however Turbobadger doesn't offer this so this functionality went away with SystemUI.
-
Updated
May 25, 2020
Exercise information
Exercise 2.10
Question or Bug
When you described how local variables are not initialized, you said that they are NOT uninitialized. I believe you should either write not initialized or uninitialized. Saying that local variables are not uninitialized is saying that local variables are initialized, which is incorrect.
here:
local_int
is a loca
pod install
hangs at "Downloading specs".
This is because the Cocoapods team changed their hosting.
Check this out: LINK
TLRD:
Change the first line of "Podfile" to "source 'https://cdn.cocoapods.org/" instead of the Github thing.
As the title says, Enumeration has two properties for the same information.
public Type Type { get; set; }
public BuiltinType BuiltinType { get; set; }
We should remove BuiltinType
and have it just as a desugared property of Type
.
-
Updated
Feb 26, 2020 - C++
This issue documents the progress on adding CI configurations
for supported C++ compilers.
- Default GCC on Ubuntu
- GCC 7 on Ubuntu
- Clang 5 on Ubuntu
- Default Clang on macOS
- Default MSVC on Windows
- MSVC 14.1+ (VS 2017) on Windows
- MinGW (MSYS2) on Windows
- Cygwin on Windows
- LXSS GCC on Windows
-
Updated
May 26, 2020 - Python
Refresh wiki page
For now the wiki page of OpenXRay is a mess!
I mean all necessary pages on all possible languages are trying to fit into main wiki page.
I haven't even found coding conventions from the first time!
That should be structured by the next design:
- Main page contains only links to language main wiki page.
- Language main page contains thematic sections like: Development, Modding, Using, Conti
Sandboxed API should build/work on all major Linux distributions.
We should provide at least some basic instructions for distributions other than Debian/Ubuntu:
- Fedora
- Arch Linux
- openSUSE
- Gentoo
This also applies for their derivatives (CentOS, Manjaro, etc.)
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.
Update documentation
Now that enough changes have been made, we should update the documentation.
- work with VSCode
- readme
- math
- shape
- image
- trace
- scene
- ply
- obj
- pbrt
bug in README.md when_all_ready() example:
task<> example2()
{
...
// Unpack and handle each result individually once they're all complete.
for (int i = 0; i < 1000; ++i)
{
try
{
>>> std::string& record = tasks[i].result();
should be
std::string& record = resultTasks[i].result();
...
}
Library name: triton
Library description: Triton is a Dynamic Binary Analysis (DBA) framework. It provides internal components like a Dynamic Symbolic Execution (DSE) engine, a dynamic taint engine, AST representations of the x86, x86-64, ARM32 and AArch64 Instructions Set Architecture (ISA), SMT simplification passes, an SMT solver interface and, the last but not least, Python bindings.
Sou