diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-14 17:34:07 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 17:34:07 +0300 |
commit | b3e84e58d471412b9d26e173b77c757d93d57b19 (patch) | |
tree | 5ad991beda3975e8d8237562724e20f30d169d40 /src/types | |
parent | 9afa9c4e97faa9a6d7e6089ec1f822047738fdec (diff) | |
parent | 64174491dac84c559db5c48ed850177fa3eb4da0 (diff) |
Merge pull request #133 from JellyBrick/master
Fix #127, #128 & Code quality improvements
Diffstat (limited to 'src/types')
-rw-r--r-- | src/types/InputFile.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/types/InputFile.cpp b/src/types/InputFile.cpp index e0885f0..0ca1991 100644 --- a/src/types/InputFile.cpp +++ b/src/types/InputFile.cpp @@ -1,7 +1,4 @@ #include "tgbot/types/InputFile.h" - -#include <fstream> - #include "tgbot/tools/StringTools.h" #include "tgbot/tools/FileTools.h" @@ -17,4 +14,4 @@ InputFile::Ptr InputFile::fromFile(const string& filePath, const string& mimeTyp return result; } -}; +} |