From cbbf4113939d44ad0c91462895f8329cfc770f67 Mon Sep 17 00:00:00 2001 From: Markus Mittendrein Date: Thu, 14 May 2020 19:52:36 +0200 Subject: Add missing string include to CppC4Group --- src/cppc4group.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/cppc4group.hpp') 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 -#include -#include #include #include +#include +#include +#include #include +#include 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... -- cgit v1.2.3-54-g00ecf