diff options
| author | Luke Granger-Brown <git@lukegb.com> | 2022-01-16 19:13:03 +0000 |
|---|---|---|
| committer | Luke Granger-Brown <git@lukegb.com> | 2022-01-16 19:13:03 +0000 |
| commit | dd0ca672a261d3e1d78e8d5cc5382c2e8df75a4e (patch) | |
| tree | fbb4c4095e4a91522d9e15a6a90797995428e48a | |
| parent | a0ff873277b70e3abc1423f390ab63e93280facd (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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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> |
