Adjustment and fixes for boost-1.36 support
[senf.git] / PPI / AnnotationRouter.test.cc
index 8084a7a..6b55d73 100644 (file)
@@ -41,6 +41,7 @@ namespace {
         int value;
         bool operator<(IntAnnotation const & other) const { return value < other.value; }
         bool operator==(IntAnnotation const & other) const { return value == other.value; }
+        IntAnnotation() {}
         IntAnnotation(int v) : value(v) {}
         IntAnnotation & operator=(int v) { value=v; return *this; }
         operator int () const { return value; }