Fix for VS

This commit is contained in:
Selim Mustafaev 2018-10-02 23:00:12 +03:00
parent 3f1d54f2a7
commit a67f54b078
3 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
.idea/
.vs/
cmake-build-debug/

1
TIFF.h
View File

@ -7,6 +7,7 @@
#include <vector>
#include <map>
#include <variant>
#include <optional>
constexpr int16_t TIFF_MAGIC = 42;

View File

@ -14,7 +14,7 @@ int main(int argc, char** argv) {
ifd.dumpInfo();
}
// system("pause");
system("pause");
return 0;
}