Mark some functions as const

This commit is contained in:
Lioncash
2014-12-07 17:08:13 -05:00
parent f7baec317c
commit a962bc5a6c
14 changed files with 34 additions and 34 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ private:
ReadFunc Read;
CloseFunc Close;
bool IsValid() { return library != NULL; }
bool IsValid() const { return library != NULL; }
};
struct HandlerFileHandle {