Skip to content
#

cpp14

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,345 public repositories matching this topic...

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

danpat
danpat commented Dec 14, 2018

It's possible to instantiate an OSRM object in Javascript like this:

    const osrmInstance = new OSRM({
        algorithm: 'CH',
        dataset_name: 'foo',
        mmap_memory: true
    });

This should throw an error - setting mmap_memory should require supplying a path, and this is incompatible with using dataset_name, which triggers using shared memory.

These opti

ralphdolmans
ralphdolmans commented May 1, 2020

Hi. First of all, thanks for this work!

While working with this code is noticed some unexpected behavior, which is caused by a difference between documentation and code. Not sure which of the two are wrong.

According to https://nghttp2.org/documentation/types.html#c.nghttp2_on_data_chunk_recv_callback

The implementation of this function must return 0 if it succeeds. **If nonzero is return

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.

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.

jonesmz
jonesmz commented Mar 15, 2020
#ifdef BOOST_HANA_CONFIG_ENABLE_STRING_UDL
    //////////////////////////////////////////////////////////////////////////
    // _s user-defined literal
    //////////////////////////////////////////////////////////////////////////
    namespace literals {
        template <typename CharT, CharT ...s>
        constexpr auto operator"" _s() {
            static_assert(std::is_same<Ch
CSharperMantle
CSharperMantle commented Apr 7, 2020

I am sorry but I don't know how to put it into an Issue format, so I have to explain it plainly.

Dear contributors,

It seems that every source file in Vc library has the following copyright notice:

/*  This file is part of the Vc library. {{{
Copyright © 2009-2015 XXX <xxx@example.com>
Redistribution and use in source and binary forms, with or without
modification, are permitte
tsequitur
tsequitur commented Dec 8, 2017

hi, i am trying to install rpclib, but got a bit lost.

the version i am trying to install is the git cloned version from the master branch.
i follow the guide and execute the build commands. the documentation says

And that's it. If all goes well, your build output will be in the output directory.

i can find no direc

mbeutel
mbeutel commented Sep 28, 2019

The Guidelines Support Library is sort-of documented in the C++ Core Guidelines, so one could argue that GSL implementations such as gsl-lite only need to document their configuration switches.

However, gsl-lite offers a variety of additional features which are currently undocumented (e.g. the gsl_HAVE_* family of macro

nholthaus
nholthaus commented May 11, 2018

We have user-definable variadic dimensions now, but we need to develop some case studies we can document to guide users on how to take advantage of that. We probably also want some macros to simplify including new dimensions and making sure traits and things are auto-generated when a new dimension is defined.

If anyone comes up with something cool, post it here or in a PR and I'll include it in

30-seconds-of-cpp

Created by Bjarne Stroustrup

Released October 1985

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