summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/pugixml/tests/fuzz_parse.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-11-15 03:53:47 +1100
committer Vas Crabb <vas@vastheman.com>2020-11-15 03:53:47 +1100
commit55b8ca317ab1f77850f498c1523355e1f5dd8d03 (patch)
treebada7948236b18684609f47024cc9ca227a5ef89 /3rdparty/pugixml/tests/fuzz_parse.cpp
parent4db7f0439c3b841eb07d2320e39be38269e6cd56 (diff)
-Switch to building MAME as C++17.
* Updated sol2 to 3.2.2 * Updated pugixml to 1.10 * Increased minimum clang version to 6 * Cleaned up some stuff that can use new features
Diffstat (limited to '3rdparty/pugixml/tests/fuzz_parse.cpp')
-rw-r--r--3rdparty/pugixml/tests/fuzz_parse.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/3rdparty/pugixml/tests/fuzz_parse.cpp b/3rdparty/pugixml/tests/fuzz_parse.cpp
deleted file mode 100644
index e7581967a1d..00000000000
--- a/3rdparty/pugixml/tests/fuzz_parse.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "../src/pugixml.hpp"
-#include "allocator.hpp"
-
-int main(int argc, const char** argv)
-{
- pugi::set_memory_management_functions(memory_allocate, memory_deallocate);
-
- pugi::xml_document doc;
-
- for (int i = 1; i < argc; ++i)
- {
- doc.load_file(argv[i]);
- doc.load_file(argv[i], pugi::parse_minimal);
- doc.load_file(argv[i], pugi::parse_full);
- }
-}