summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2022-01-16 19:13:03 +0000
committerLuke Granger-Brown <git@lukegb.com>2022-01-16 19:13:03 +0000
commitdd0ca672a261d3e1d78e8d5cc5382c2e8df75a4e (patch)
treefbb4c4095e4a91522d9e15a6a90797995428e48a
parenta0ff873277b70e3abc1423f390ab63e93280facd (diff)
Fix includes for cxml.h.
stdint.h is unnecessary, but std::exception should come from <exception>, and std::shared_ptr comes from <memory>.
-rw-r--r--src/cxml.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cxml.h b/src/cxml.h
index d2cb5b6..837c9db 100644
--- a/src/cxml.h
+++ b/src/cxml.h
@@ -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>