diff options
Diffstat (limited to 'modules/async/c++')
-rw-r--r-- | modules/async/c++/SConscript | 2 | ||||
-rw-r--r-- | modules/async/c++/async.cpp | 6 | ||||
-rw-r--r-- | modules/async/c++/async.hpp | 6 | ||||
-rw-r--r-- | modules/async/c++/async.tmpl.hpp | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/modules/async/c++/SConscript b/modules/async/c++/SConscript index 69f8950..57707c4 100644 --- a/modules/async/c++/SConscript +++ b/modules/async/c++/SConscript @@ -13,7 +13,7 @@ dir_path = Dir('.').abspath async_env = env.Clone(); async_env.sources = sorted(glob.glob(dir_path + "/*.cpp")) -async_env.headers = sorted(glob.glob(dir_path + "/*.h")) +async_env.headers = sorted(glob.glob(dir_path + "/*.hpp")) env.sources += async_env.sources; env.headers += async_env.headers; diff --git a/modules/async/c++/async.cpp b/modules/async/c++/async.cpp index e10ee16..742d43c 100644 --- a/modules/async/c++/async.cpp +++ b/modules/async/c++/async.cpp @@ -1,6 +1,6 @@ -#include "async.h" -#include <forstio/common.h> -#include <forstio/error.h> +#include "async.hpp" +#include <forstio/common.hpp> +#include <forstio/error.hpp> #include <algorithm> #include <cassert> diff --git a/modules/async/c++/async.hpp b/modules/async/c++/async.hpp index 92ada9c..d116499 100644 --- a/modules/async/c++/async.hpp +++ b/modules/async/c++/async.hpp @@ -1,7 +1,7 @@ #pragma once -#include <forstio/common.h> -#include <forstio/error.h> +#include <forstio/common.hpp> +#include <forstio/error.hpp> #include <chrono> #include <functional> @@ -1020,4 +1020,4 @@ public: } // namespace saw -#include "async.tmpl.hpp +#include "async.tmpl.hpp" diff --git a/modules/async/c++/async.tmpl.hpp b/modules/async/c++/async.tmpl.hpp index 8fcb59c..ba2a0b3 100644 --- a/modules/async/c++/async.tmpl.hpp +++ b/modules/async/c++/async.tmpl.hpp @@ -1,7 +1,7 @@ #pragma once -#include <forstio/common.h> -#include <forstio/error.h> +#include <forstio/common.hpp> +#include <forstio/error.hpp> #include <cassert> // Template inlining |