Skip to content
#

cpp11

cpp logo

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

Here are 2,473 public repositories matching this topic...

nyurik
nyurik commented Dec 16, 2019

This is more of a question, as I couldn't find it in the documentation. Does aria2 do any checks when downloading a file from multiple sources to ensure all of them are actually referencing the same file? Some basic checks might be based on comparing: 1) file size, 2) date (might not be consistent or even available), 3) first and last few bytes, 4) small chunk overlap, and compare the small ove

claremacrae
claremacrae commented Jun 24, 2019

Request

This issue is for capturing actions arising from @horenmar 's request on Discord of 2019-06-15 "Help wanted: documentation"

The current documentation is pretty okay, but it definitely shows that it has evolved over multiple years, using different expository styles and was targeted at different audience.

And as the feature set grows, the documentation needs to become more

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

Wuzzy2
Wuzzy2 commented Jan 6, 2019
Issue type
  • Bug or legacy issue (not sure)
Minetest version

0.4.17.1

Summary

The keybindings menu has that weird warning at the top:

(If this menu screws up, remove stuff from minetest.conf)

Is this warning still relevant? I think this warning has been in Minetest since ages, yet it's still there.

If the warning is still relevant, please write down (in this

eyalroz
eyalroz commented Feb 22, 2020

doctest currently has an option not to print the version, so that printVersion() starts with:

         void printVersion() {
             if(opt.no_version == false)

I suggest that the same option be added for the intro text, i.e.

        void printIntro() {
+            if(opt.no_intro == false) {
             printVersion();
             // etc. etc.
+            }
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.

CLI11
flecs
StayPirate
StayPirate commented Mar 19, 2018

Hi All,

I want to write a config file for my client. I just need to encode the options:

./ssf -U 53:127.0.0.1:53 -p 443 ..81.45

In the appropriate config file, but I don't understand how to do. I just understood that because this is the client I just need datagram_listener and not datagram_forwarder, but how can I specify the local port, the remote port, and the IP where to bind it?

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.