diff --git a/doc/conversion.html b/doc/conversion.html index b9e8dd1..f2409a3 100644 --- a/doc/conversion.html +++ b/doc/conversion.html @@ -52,7 +52,7 @@ <boost/endian/conversion.hpp>
- <boost/endian/integers.hpp> + <boost/endian/types.hpp> diff --git a/doc/index.html b/doc/index.html index a15b005..a02d971 100644 --- a/doc/index.html +++ b/doc/index.html @@ -48,7 +48,7 @@ <boost/endian/conversion.hpp>
- <boost/endian/integers.hpp> + <boost/endian/types.hpp>

Abstract

diff --git a/doc/integers.html b/doc/integers.html index 3e9c014..3f0303c 100644 --- a/doc/integers.html +++ b/doc/integers.html @@ -65,11 +65,11 @@ <boost/endian/conversion.hpp>
- <boost/endian/integers.hpp> + <boost/endian/types.hpp>

Introduction

-

Header <boost/endian/integers.hpp> provides +

Header <boost/endian/types.hpp> provides integer-like byte-holder binary types with explicit control over byte order, value type, size, and alignment. Typedefs provide easy-to-use names for common configurations.

@@ -102,7 +102,7 @@ binary file containing four byte big-endian and little-endian integers:

#include <iostream>
 #include <cstdio>
-#include <boost/endian/integers.hpp>
+#include <boost/endian/types.hpp>
 #include <boost/static_assert.hpp>
 
 using namespace boost::endian;
diff --git a/example/endian_example.cpp b/example/endian_example.cpp
index 48b1b0b..cba1a2d 100644
--- a/example/endian_example.cpp
+++ b/example/endian_example.cpp
@@ -15,7 +15,7 @@
 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 using namespace boost::endian;
diff --git a/include/boost/endian/integers.hpp b/include/boost/endian/types.hpp
similarity index 99%
rename from include/boost/endian/integers.hpp
rename to include/boost/endian/types.hpp
index 6f72d35..7feb317 100644
--- a/include/boost/endian/integers.hpp
+++ b/include/boost/endian/types.hpp
@@ -1,4 +1,4 @@
-//  boost/endian/integers.hpp  ---------------------------------------------------------//
+//  boost/endian/types.hpp  ------------------------------------------------------------//
 
 //  (C) Copyright Darin Adler 2000
 //  (C) Copyright Beman Dawes 2006, 2009
diff --git a/test/endian_in_union_test.cpp b/test/endian_in_union_test.cpp
index bebebed..71e04ca 100644
--- a/test/endian_in_union_test.cpp
+++ b/test/endian_in_union_test.cpp
@@ -13,7 +13,7 @@
 
 #include 
 
-#include 
+#include 
 #include 
 #include 
 
diff --git a/test/endian_operations_test.cpp b/test/endian_operations_test.cpp
index 25914c9..94ce9bf 100644
--- a/test/endian_operations_test.cpp
+++ b/test/endian_operations_test.cpp
@@ -28,7 +28,7 @@
 # pragma warning( disable : 4389 )  // signed/unsigned mismatch
 #endif
 
-#include 
+#include 
 #include 
 #include 
 #include 
diff --git a/test/endian_test.cpp b/test/endian_test.cpp
index e67715f..a04637c 100644
--- a/test/endian_test.cpp
+++ b/test/endian_test.cpp
@@ -18,7 +18,7 @@
 
 #include 
 
-#include 
+#include 
 #include 
 #include 
 
diff --git a/test/speed_test.cpp b/test/speed_test.cpp
index cb0cd7d..dd67952 100644
--- a/test/speed_test.cpp
+++ b/test/speed_test.cpp
@@ -12,7 +12,7 @@
 #include 
 
 #include 
-#include 
+#include 
 #include 
 #include 
 #include