From 408e980a83437ed621fa99ae0cd8d2bc6579f5ba Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 27 Oct 2011 12:13:03 +0200 Subject: Fix warnings and error (due to bitrot) --- lib/configuration.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'lib/configuration.h') diff --git a/lib/configuration.h b/lib/configuration.h index fba4c01..18e9bc2 100644 --- a/lib/configuration.h +++ b/lib/configuration.h @@ -34,14 +34,14 @@ class Configuration { public: - Configuration(char *configfile); + Configuration(const char *configfile); ~Configuration(); - int get(char *node, std::string *retval); - int get(char *node, std::vector *retval); - int get(char *node, double *retval); - int get(char *node, int *retval); - int get(char *node, bool *retval); + int get(const char *node, std::string *retval); + int get(const char *node, std::vector *retval); + int get(const char *node, double *retval); + int get(const char *node, int *retval); + int get(const char *node, bool *retval); private: LibLUAWrapper lua; -- cgit v1.2.3