Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify experimental includes #171

Open
wants to merge 11 commits into
base: master
Choose a base branch
from

Commits on Oct 10, 2020

  1. Support both <coroutine> and <experimental/coroutine>

    Starting with GCC 10.1, GCC/libstdc++ supports coroutines, but includes
    them in their final location in <coroutine>.
    
    This commit generalizes the location of the header, and the name of the
    types (either in the std or std::experimental namespace), so that both
    the current Clang/MSVC and the GCC approach can be supported.
    
    This should also guarantee that both current and later Clang/MSVC
    releases will be supported by the library.
    dutow authored and andreasbuhr committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    49da236 View commit details
    Browse the repository at this point in the history
  2. Also support <filesystem> as well as <experimental/filesystem>

    The change for <coroutine> vs. <experimental/coroutine> is
    replicated for <filesystem> in this patch. In addition,
    the std::experimental namespace is replaced by cppcoro:: namespace
    in a few more places.
    andreasbuhr committed Oct 10, 2020
    Configuration menu
    Copy the full SHA
    06b3bab View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2020

  1. Configuration menu
    Copy the full SHA
    81e9133 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2020

  1. Configuration menu
    Copy the full SHA
    81708c2 View commit details
    Browse the repository at this point in the history
  2. remove unused includes

    andreasbuhr committed Oct 13, 2020
    Configuration menu
    Copy the full SHA
    0550a5d View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2020

  1. Configuration menu
    Copy the full SHA
    25c811e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d6cd95 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #17 from Garcia6l20/unify_experimental_includes

    Unify experimental includes
    andreasbuhr committed Oct 23, 2020
    Configuration menu
    Copy the full SHA
    016b67b View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2020

  1. fixed VS 2017 builds

    andreasbuhr committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    1081167 View commit details
    Browse the repository at this point in the history
  2. fix test for MSVC 2017

    andreasbuhr committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    d23ce4d View commit details
    Browse the repository at this point in the history
  3. fix test for MSVC 2017

    andreasbuhr committed Nov 4, 2020
    Configuration menu
    Copy the full SHA
    f71a7f6 View commit details
    Browse the repository at this point in the history