@@ -40,9 +40,9 @@ class StampBase
4040
4141void Load (std::shared_ptr<Blob> blob);
4242
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 ; }
4646virtual bool isRecursive () {return is_recursive;}
4747};
4848
@@ -90,8 +90,8 @@ StampBasePV<T>::ExtractBin(std::shared_ptr<Blob> blob)
9090return v;
9191}
9292
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
9595{
9696public:
9797virtual TExtractValue (std::shared_ptr<Blob> blob) = 0;/* Should be defined by derived classes*/