Explorar el Código

Added const to Option::getTable()

Tatsuhiro Tsujikawa hace 14 años
padre
commit
031f1199d7
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Option.h

+ 1 - 1
src/Option.h

@@ -71,7 +71,7 @@ public:
 
   void clear();
 
-  const std::vector<std::string>& getTable()
+  const std::vector<std::string>& getTable() const
   {
     return table_;
   }