diff options
author | David Robillard <d@drobilla.net> | 2020-12-16 11:02:14 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-12-16 11:02:14 +0100 |
commit | 86da10ac94f64d16ad145200664fc8532fd90783 (patch) | |
tree | fd1d165360f7a5d8af71ba104cc88c84132a7eab /sord/sordmm.hpp | |
parent | 115978bcfcc05cda48b39c19010839d5a179984c (diff) | |
download | sord-86da10ac94f64d16ad145200664fc8532fd90783.tar.gz sord-86da10ac94f64d16ad145200664fc8532fd90783.tar.bz2 sord-86da10ac94f64d16ad145200664fc8532fd90783.zip |
Clean up includes
Diffstat (limited to 'sord/sordmm.hpp')
-rw-r--r-- | sord/sordmm.hpp | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp index c4236d5..c6bea7b 100644 --- a/sord/sordmm.hpp +++ b/sord/sordmm.hpp @@ -22,14 +22,6 @@ #ifndef SORD_SORDMM_HPP #define SORD_SORDMM_HPP -#include <cassert> -#include <cstring> -#include <cstdlib> -#include <iostream> -#include <set> -#include <string> -#include <sstream> - #if defined(__clang__) # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant" @@ -42,6 +34,16 @@ # pragma clang diagnostic pop #endif +#include <cassert> +#include <cstdint> +#include <cstdio> +#include <cstdlib> +#include <cstring> +#include <iostream> +#include <set> +#include <sstream> +#include <string> + #define SORD_NS_XSD "http://www.w3.org/2001/XMLSchema#" namespace Sord { |