fix formatting error in blob.hpp
authorJonathan L Long <jonlong@cs.berkeley.edu>
Mon, 11 Aug 2014 04:23:34 +0000 (21:23 -0700)
committerJonathan L Long <jonlong@cs.berkeley.edu>
Mon, 11 Aug 2014 04:23:34 +0000 (21:23 -0700)
include/caffe/blob.hpp

index eb0c25b..6960029 100644 (file)
@@ -23,7 +23,7 @@ class Blob {
   inline int channels() const { return channels_; }
   inline int height() const { return height_; }
   inline int width() const { return width_; }
-  inline int count() const {return count_; }
+  inline int count() const { return count_; }
   inline int offset(const int n, const int c = 0, const int h = 0,
       const int w = 0) const {
     CHECK_GE(n, 0);