From 031f1199d7f18f9407783ca4811d69833761157c Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 1 Dec 2011 23:36:17 +0900 Subject: [PATCH] Added const to Option::getTable() --- src/Option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Option.h b/src/Option.h index 0229780a..4d5de420 100644 --- a/src/Option.h +++ b/src/Option.h @@ -71,7 +71,7 @@ public: void clear(); - const std::vector& getTable() + const std::vector& getTable() const { return table_; }