diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-22 20:12:33 +0300 |
---|---|---|
committer | Egor Pugin <egor.pugin@gmail.com> | 2020-03-22 20:12:33 +0300 |
commit | 0e9a5bb427757b8b6ecb2734e602fe5bc7e6354b (patch) | |
tree | 4aeb54b0be115bede2191a3bb2d829245955a881 /src/Api.cpp | |
parent | 58620856faf03e36fd57fa50362fc32f4b8cb9cb (diff) |
Fix header order.
Diffstat (limited to 'src/Api.cpp')
-rw-r--r-- | src/Api.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Api.cpp b/src/Api.cpp index c1b112c..0f443b3 100644 --- a/src/Api.cpp +++ b/src/Api.cpp @@ -1,12 +1,12 @@ #include "tgbot/Api.h" -#include <cstdint> #include <tgbot/tools/StringTools.h> -#include <utility> - #include "tgbot/TgException.h" #include "tgbot/TgTypeParser.h" +#include <cstdint> +#include <utility> + using namespace std; using namespace boost::property_tree; |