Fix includes for cxml.h.
authorLuke Granger-Brown <git@lukegb.com>
Sun, 16 Jan 2022 19:13:03 +0000 (19:13 +0000)
committerLuke Granger-Brown <git@lukegb.com>
Sun, 16 Jan 2022 19:13:03 +0000 (19:13 +0000)
stdint.h is unnecessary, but std::exception should come from <exception>,
and std::shared_ptr comes from <memory>.

src/cxml.h

index d2cb5b6518ce347f0709e9731bc1e0a7c3f9582f..837c9dbab68a9022d7342c2bc2724668312b134a 100644 (file)
@@ -24,7 +24,8 @@
 #include <boost/optional.hpp>
 #include <boost/filesystem.hpp>
 #include <boost/algorithm/string/erase.hpp>
-#include <stdint.h>
+#include <exception>
+#include <memory>
 #include <string>
 #include <vector>