]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/multiprecision/example/cpp_bin_float_import_export.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / multiprecision / example / cpp_bin_float_import_export.cpp
index 3c9bc1438c57c652c0dd48d0478101b12a74aff1..045cbc86901ef6c8e431f609c91abbf24f82a294 100644 (file)
@@ -14,7 +14,7 @@
 //[IE2
 
 /*`
-Importing or exporting cpp_bin_float is similar, but we must procede via an intermediate integer:
+Importing or exporting cpp_bin_float is similar, but we must proceed via an intermediate integer:
 */
 /*=
 #include <boost/multiprecision/cpp_bin_float.hpp>
@@ -36,7 +36,7 @@ int main()
    export_bits(cpp_int(f.backend().bits()), std::back_inserter(v), 8);
    // Grab the exponent as well:
    int e = f.backend().exponent();
-   // Import back again, and check for equality, we have to procede via
+   // Import back again, and check for equality, we have to proceed via
    // an intermediate integer:
    cpp_int i;
    import_bits(i, v.begin(), v.end());