File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,15 +10,13 @@ using namespace experimental;
10
10
#include < coroutine>
11
11
#endif
12
12
13
- #include " __helpers.hpp"
14
13
#include " type_traits.hpp"
15
14
#include < exception>
16
15
17
16
/* *
18
17
* \brief The namespace containing all of fpgen's code.
19
18
*/
20
19
namespace fpgen {
21
- #if _FPGEN_USE_CONCEPTS
22
20
/* *
23
21
* \brief The main generator type.
24
22
*
@@ -32,10 +30,7 @@ namespace fpgen {
32
30
* \tparam T The value type for the generator. This should satisfy
33
31
* `std::copyable`, or on (older) CLang versions, `std::is_copy_assignable<T>`.
34
32
*/
35
- template <std::copyable T> class generator {
36
- #else
37
33
template <typename T, typename _ = type::is_generator_type<T>> class generator {
38
- #endif
39
34
public:
40
35
/* *
41
36
* \brief The promise type for the generator.
You can’t perform that action at this time.
0 commit comments