aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/variable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/variable.cpp')
-rw-r--r--engines/sludge/variable.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sludge/variable.cpp b/engines/sludge/variable.cpp
index 2c64a7fa25..334beb1e84 100644
--- a/engines/sludge/variable.cpp
+++ b/engines/sludge/variable.cpp
@@ -19,15 +19,11 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
-#include <string.h>
-
#include "debug.h"
#include "allfiles.h"
-
#include "variable.h"
#include "newfatal.h"
-
#include "stringy.h"
#include "objtypes.h"
#include "people.h"
@@ -40,6 +36,8 @@
#endif
+namespace Sludge {
+
const char *typeName[] = {"undefined", "number", "user function", "string",
"built-in function", "file", "stack",
"object type", "animation", "costume"
@@ -667,3 +665,5 @@ void debugVar (FILE * fp, const variable & thisVar) {
}
}
*/
+
+} // End of namespace Sludge