add missing const qualifiers to MemoryDataLayer ExactNum* functions
authorJonathan L Long <jonlong@cs.berkeley.edu>
Wed, 11 Jun 2014 22:29:04 +0000 (15:29 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Wed, 25 Jun 2014 22:11:41 +0000 (15:11 -0700)
include/caffe/data_layers.hpp

index 2b4c278..fc93daa 100644 (file)
@@ -248,8 +248,8 @@ class MemoryDataLayer : public Layer<Dtype> {
   virtual inline LayerParameter_LayerType type() const {
     return LayerParameter_LayerType_MEMORY_DATA;
   }
-  virtual inline int ExactNumBottomBlobs() { return 0; }
-  virtual inline int ExactNumTopBlobs() { return 2; }
+  virtual inline int ExactNumBottomBlobs() const { return 0; }
+  virtual inline int ExactNumTopBlobs() const { return 2; }
 
   // Reset should accept const pointers, but can't, because the memory
   //  will be given to Blob, which is mutable