@@ -40,9 +40,9 @@ class StampBase
40
40
41
41
void Load (std::shared_ptr<Blob> blob);
42
42
43
- bool isFixedSize () {return minSize () ==maxSize ();}
44
- bool isVariated () {return !isFixedSize () && !isUnbounded ();}
45
- bool isUnbounded () {return maxSize () == -1 ;}
43
+ bool isFixedSize () {return minSize () ==maxSize (); }
44
+ bool isVariated () {return !isFixedSize () && !isUnbounded (); }
45
+ bool isUnbounded () {return maxSize () == -1 ; }
46
46
virtual bool isRecursive () {return is_recursive;}
47
47
};
48
48
@@ -90,8 +90,8 @@ StampBasePV<T>::ExtractBin(std::shared_ptr<Blob> blob)
90
90
return v;
91
91
}
92
92
93
- template <class T >class StampBaseV :public StampBasePV <T>
94
- , publicvirtual StampBase// FIXME I do not understand why do we need it here, but wihtout it, it does not build
93
+ template <class T >class StampBaseV :public StampBasePV <T>,
94
+ publicvirtual StampBase// FIXME I do not understand why do we need it here, but wihtout it, it does not build
95
95
{
96
96
public:
97
97
virtual TExtractValue (std::shared_ptr<Blob> blob) = 0;/* Should be defined by derived classes*/