]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/align/test/align_up_test.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / align / test / align_up_test.cpp
index 7a3c7008cf2a021e629d80a2b176ef0477439164..4faa1ffd0cdc3041ec1cff02b5f5a812191c9e82 100644 (file)
@@ -1,10 +1,9 @@
 /*
-(c) 2015 Glen Joseph Fernandes
-<glenjofe -at- gmail.com>
+Copyright 2015 Glen Joseph Fernandes
+(glenjofe@gmail.com)
 
-Distributed under the Boost Software
-License, Version 1.0.
-http://boost.org/LICENSE_1_0.txt
+Distributed under the Boost Software License, Version 1.0.
+(http://www.boost.org/LICENSE_1_0.txt)
 */
 #include <boost/align/align_up.hpp>
 #include <boost/align/is_aligned.hpp>
@@ -16,7 +15,7 @@ void test()
     char s[Alignment << 1];
     char* b = s;
     while (!boost::alignment::is_aligned(b, Alignment)) {
-        b++;
+        ++b;
     }
     {
         void* p = b;