added a missing const (otherwise clang would not compile)

This commit is contained in:
Paolo Cignoni 2013-09-23 16:23:45 +00:00
parent ce4b264dfd
commit eeccd23f71
1 changed files with 93 additions and 93 deletions

View File

@ -620,7 +620,7 @@ namespace io {
}
public:
static char * & In_mem(){static char * in_mem; return in_mem;}
static const char * & In_mem(){static const char * in_mem; return in_mem;}
static unsigned int & In_mode(){static unsigned int in_mode = 0; return in_mode;}