Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / example / cpp_int_import_export.cpp
index 7a74e4f..0e90711 100644 (file)
@@ -12,7 +12,7 @@
 //[IE1
 
 /*`
-In this simple example, we'll import/export the bits of a cpp_int 
+In this simple example, we'll import/export the bits of a cpp_int
 to a vector of 8-bit unsigned values:
 */
 /*=
@@ -37,7 +37,7 @@ int main()
    // import back again, and check for equality:
    cpp_int j;
    import_bits(j, v.begin(), v.end());
-   assert(i == j);
+   BOOST_ASSERT(i == j);
 }
 
 //]