-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump external/IniReader from
e917a99
to e0028a9
Bumps [external/IniReader](https://github.com/ThirteenAG/IniReader) from `e917a99` to `e0028a9`. - [Commits](ThirteenAG/IniReader@e917a99...e0028a9) --- updated-dependencies: - dependency-name: external/IniReader dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
aee2851
commit 175a26e
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule IniReader
updated
37 files
+0 −15 | .gitattributes | |
+39 −0 | .github/workflows/msbuild.yml | |
+338 −4 | .gitignore | |
+122 −0 | IniReader.cpp | |
+135 −334 | IniReader.h | |
+21 −0 | LICENSE | |
+0 −23 | LICENSE.txt | |
+3 −46 | README.md | |
+0 −382 | ini_parser.hpp | |
+7 −0 | mINI/.gitignore | |
+54 −0 | mINI/CHANGELOG.md | |
+19 −0 | mINI/LICENSE | |
+333 −0 | mINI/README.md | |
+ − | mINI/icon.png | |
+885 −0 | mINI/src/mini/ini.h | |
+7 −0 | mINI/tests/build.bat | |
+6 −0 | mINI/tests/build.sh | |
+25 −0 | mINI/tests/building.txt | |
+3 −0 | mINI/tests/clean.bat | |
+3 −0 | mINI/tests/clean.sh | |
+23 −0 | mINI/tests/lest/LICENSE.txt | |
+1,485 −0 | mINI/tests/lest/lest.hpp | |
+7 −0 | mINI/tests/run.bat | |
+6 −0 | mINI/tests/run.sh | |
+100 −0 | mINI/tests/testcasesens.cpp | |
+77 −0 | mINI/tests/testcopy.cpp | |
+287 −0 | mINI/tests/testgenerate.cpp | |
+59 −0 | mINI/tests/testhuge.cpp | |
+457 −0 | mINI/tests/testread.cpp | |
+141 −0 | mINI/tests/testutf8.cpp | |
+747 −0 | mINI/tests/testwrite.cpp | |
+1 −0 | premake5.bat | |
+ − | premake5.exe | |
+43 −0 | premake5.lua | |
+290 −0 | tests/SplinterCell.in | |
+11 −0 | tests/SplinterCell.in2 | |
+3 −0 | tests/test.bat |