diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2020-05-14 19:52:36 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2020-05-14 19:52:36 +0200 |
| commit | cbbf4113939d44ad0c91462895f8329cfc770f67 (patch) | |
| tree | b8d9dea81d9f1e6e8051ca89111bd4f05db8b20a /src | |
| parent | e04dc6ded7c3ca015095f7826aeb63804624abed (diff) | |
| download | cc4group-cbbf4113939d44ad0c91462895f8329cfc770f67.tar.gz cc4group-cbbf4113939d44ad0c91462895f8329cfc770f67.zip | |
Add missing string include to CppC4Group
Diffstat (limited to 'src')
| -rw-r--r-- | src/cppc4group.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cppc4group.hpp b/src/cppc4group.hpp index 2c1f6c1..e34a267 100644 --- a/src/cppc4group.hpp +++ b/src/cppc4group.hpp @@ -9,12 +9,13 @@ // one general difference to the C-API that is not mentioned at the individual methods is that functions actually returning data return an std::optional instead of a bool... // ...the optional will be populated normally and empty in error cases -#include <memory> -#include <vector> -#include <optional> #include <cstdio> #include <functional> +#include <memory> +#include <optional> +#include <string> #include <type_traits> +#include <vector> class CppC4Group { // all C-related stuff is hidden from this header so it doesn't land in the precious C++-only code this might be used in... |
