Skip to content
#

cplusplus

cpp logo

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...

illera88
illera88 commented Apr 21, 2020

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

janl
janl commented Mar 4, 2020

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

n1vux
n1vux commented Dec 23, 2019

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

Jule-
Jule- commented Apr 17, 2019

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

RedDwarf69
RedDwarf69 commented Oct 8, 2019

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

Doc
perspective
jspillers
jspillers commented Apr 27, 2020

Bug Report

There are 107 files in the repo that contain CRLF line endings as opposed to LF.

Steps to Reproduce:

  1. cd perspective
  2. 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

rp779
rp779 commented Mar 29, 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

metopa
metopa commented Dec 2, 2019

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
xray-16
kacejot
kacejot commented Aug 1, 2019

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
viboes
viboes commented Sep 28, 2019

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.

IgorStauder
IgorStauder commented Nov 21, 2019

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();
...
}

Created by Bjarne Stroustrup

Released October 1985

Website
isocpp.org
Wikipedia
Wikipedia
You can’t perform that action at this time.