silencing 1 more warning for VS 2008/2010 when using /Wall - that a float was getting stored in memory and not in a register... relates #95
diff --git a/examples/all_features/stringification.cpp b/examples/all_features/stringification.cpp
index 13e373c..60ba037 100644
--- a/examples/all_features/stringification.cpp
+++ b/examples/all_features/stringification.cpp
@@ -52,7 +52,7 @@
 };
 
 template <typename T>
-struct MyTypeInherited : MyType<T, float>
+struct MyTypeInherited : MyType<T, unsigned>
 {};
 
 template <typename T, typename K>
@@ -86,10 +86,10 @@
 TEST_CASE("all asserts should fail and show how the objects get stringified") {
     MyTypeInherited<int> bla1;
     bla1.one = 5;
-    bla1.two = 4.0f;
+    bla1.two = 4u;
     MyTypeInherited<int> bla2;
     bla2.one = 5;
-    bla2.two = 6.0f;
+    bla2.two = 6u;
 
     Bar::Foo f1;
     Bar::Foo f2;