diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-01-27 03:17:21 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2013-01-05 17:17:45 +0100 |
commit | 384e1f24d3fbd816a272e86911389c145e0cac7f (patch) | |
tree | 240180b836d87cd5660b97f99223898890b9c6e6 | |
parent | 3a8686408b5b06e45b233c8acdf8fc23e9e5a4eb (diff) | |
download | usdx-384e1f24d3fbd816a272e86911389c145e0cac7f.tar.gz usdx-384e1f24d3fbd816a272e86911389c145e0cac7f.tar.xz usdx-384e1f24d3fbd816a272e86911389c145e0cac7f.zip |
sort includes
-rw-r--r-- | src/base/songloading/songloading_strategy_txt.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/base/songloading/songloading_strategy_txt.cpp b/src/base/songloading/songloading_strategy_txt.cpp index 2a74dd1d..26809d2a 100644 --- a/src/base/songloading/songloading_strategy_txt.cpp +++ b/src/base/songloading/songloading_strategy_txt.cpp @@ -24,9 +24,11 @@ * $Id$ */ -#include <string> -#include <sstream> #include <algorithm> +#include <exception> +#include <sstream> +#include <string> + #include "songloading_strategy_txt.hpp" #include "utils/file.hpp" #include "utils/locale_independent_float.hpp" |