Skip to content
#

cpp17

cpp logo

C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.

Here are 1,775 public repositories matching this topic...

simonsan
simonsan commented Nov 2, 2019

Right now we give the following information (e.g.):

openage v0.4.0-69-g9412facd
opengl
MSVC 19.16.27032.1 [/DWIN32 /D_WINDOWS /W3 /GR /EHsc /MP]
Cython 0.29.14

For future debugging on the user side we could give more information:

  • OpenGL version number
  • nyan-lib version number
  • libc
  • sdl-version
  • Qt-version
  • maybe even opus-codec version

In addition:
jj quote:

galkinvv
galkinvv commented Jan 21, 2020

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:

const char win_path[] = R"(c:\some\unescaped\path)";

The same cppreference link als

eyalroz
eyalroz commented Mar 2, 2020

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.

ThePhD
ThePhD commented Aug 22, 2016

Hello, users of sol2! This issue was made so that I could get a better idea of what you all use for Lua and how much you like / dislike sol2 compared to what you used to use (if anything) and sol2 now. If anyone could just reply to this issue with their thoughts, perhaps answer some of the questions below (or go on a tangent, really anything), I'd appreciate it. I'm going to be writing a paper abo

Qv2ray
anysoft
anysoft commented Mar 31, 2020

简单描述这个 bug:

在连接V2ray服务器之前先连接一个HTTP或者Sock5/4的代理服务器,再通过该代理服务器连接V2ray服务器。
在ss和SSR的客户端都有实现叫前置代理,也就是代理链。可以通过多次代理跳转。
1、实现前置代理功能,其中支持配置代理类型,代理IP端口,代理认证信息,代理header自定义(混淆自定义header项或者有些HTTP代理需要Base auth的request header项)

如何复现这个bug:

目前只能直接client直连接V2ray服务端,一些情况下导致V2ray对外暴露,容易封闭。
另外一些情况下,本地网络只能通过http代理访问外网,这时候就没法直接连接v2ray服务器了。

Qv2ray 本应该是怎样工作的?

*如果是连接问题,在其他 v2ray 客户端里出现过吗?

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.

niklasnolte
niklasnolte commented Jan 18, 2019

the correct result of the example in Vc::iif should be [2,1,1,5] (if i understood it correctly)
and I am not sure whether the code example in Vc::simd_for_each is correct, therefore I did not make a PR.

void scale(std::vector<double> &data, double factor) {
  Vc::simd_for_each(data.begin(), data.end(), [&](auto v) {
     v *= factor;
  });
}

If one gets v by value, it chang

Created by Bjarne Stroustrup

Released October 1985

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