aboutsummaryrefslogtreecommitdiff
path: root/include/hex_functions.h
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2020-05-02 21:29:06 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2020-05-02 21:29:06 -0500
commitbbdad2a40d8f02fe738830d9cf66ad4ec2fa86cf (patch)
tree8e8892d24684f005b0e18624677957791e1738b7 /include/hex_functions.h
parent1e2d71fb96ca85fa50c172c2f1cf22b2620bacd2 (diff)
parent992c0b14e155059a7e22ad72c0309b620c850a46 (diff)
Merge branch '2.7-rc'
Includes full code reformat. # Conflicts: # src/aomusicplayer.cpp # src/path_functions.cpp
Diffstat (limited to 'include/hex_functions.h')
-rw-r--r--include/hex_functions.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/hex_functions.h b/include/hex_functions.h
index 285f096..d178ba1 100644
--- a/include/hex_functions.h
+++ b/include/hex_functions.h
@@ -1,17 +1,16 @@
#ifndef HEX_OPERATIONS_H
#define HEX_OPERATIONS_H
+#include <algorithm>
#include <bitset>
#include <cstdint>
-#include <iostream>
-#include <algorithm>
-#include <string>
#include <iomanip>
+#include <iostream>
#include <sstream>
+#include <string>
-namespace omni
-{
- std::string int_to_hex(unsigned int input);
+namespace omni {
+std::string int_to_hex(unsigned int input);
}
-#endif //HEX_OPERATIONS_H
+#endif // HEX_OPERATIONS_H