Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / geometry / test / util / calculation_type.cpp
index 34523e8..6e02667 100644 (file)
@@ -172,15 +172,17 @@ int test_main(int, char* [])
     typedef model::point<boost::long_long_type, 2, cs::cartesian> ll;
     typedef model::point<user_defined, 2, cs::cartesian> u;
 
-    // Calculation type "void" so 
+    // Calculation type "void" so
     test<f, f, double, int, double>();
     test<d, d, double, int, double>();
     test<f, d, double, int, double>();
 
     // FP/int mixed
     test<i, f, double, int, double>();
+    test<s, f, double, short int, double>();
 
     // integers
+    test<s, s, double, short int, short int>();
     test<i, i, double, int, int>();
     test<c, i, double, int, int>();
     test<c, c, double, char, char>();