Attempt to fix the GCC build

This commit is contained in:
Denis Blank 2017-09-27 02:35:53 +02:00
parent b65eea8b1a
commit 0aa42d5b1a
4 changed files with 6 additions and 5 deletions

View File

@ -36,8 +36,7 @@ target_compile_features(continuable-base
cxx_defaulted_functions
cxx_nullptr
cxx_trailing_return_types
cxx_return_type_deduction
$<$<COMPILE_FEATURES:cxx_std_17>:cxx_std_17>)
cxx_return_type_deduction)
add_library(continuable INTERFACE)

View File

@ -250,8 +250,7 @@ public:
/// http_request("github.com")
/// .then([](std::string github) { })
/// .catching([](std::error_condition error) {
/// // Handle the error here
/// // ...
/// error.message(); // Handle the error here
/// });
/// ```
///

View File

@ -34,6 +34,7 @@
#include "function2/function2.hpp"
#include <continuable/continuable-base.hpp>
#include <continuable/continuable-promise-base.hpp>
namespace cti {
// clang-format off

View File

@ -22,4 +22,6 @@
#include <continuable/continuable.hpp>
int main(int, char**) { return 0; }
int main(int, char**) {
return 0;
}