X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a92d7b716f51a53dea7f59db8524d4add713b910..2d75d1cbec1f1390f086522ccc8a0b3a4e645d89:/src/bindings/lua/lua_debug.cpp diff --git a/src/bindings/lua/lua_debug.cpp b/src/bindings/lua/lua_debug.cpp index df54f3f135..ddf1fb41b8 100644 --- a/src/bindings/lua/lua_debug.cpp +++ b/src/bindings/lua/lua_debug.cpp @@ -1,10 +1,9 @@ -/* Copyright (c) 2010-2016. The SimGrid Team. - * All rights reserved. +/* Copyright (c) 2010-2017. The SimGrid Team. + * All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ - /* * This file contains functions that aid users to debug their lua scripts; for instance, * tables can be easily output and values are represented in a human-readable way. (For instance, @@ -15,7 +14,7 @@ extern "C" { #include } -#include "lua_utils.h" +#include "lua_utils.hpp" #include "xbt.h" XBT_LOG_NEW_DEFAULT_CATEGORY(lua_debug, "Lua bindings (helper functions)"); @@ -40,7 +39,7 @@ const char* sglua_tostring(lua_State* L, int index) { snprintf(buff, 4, "nil"); break; - case LUA_TNUMBER: + case LUA_TNUMBER: snprintf(buff, 64, "%.3f", lua_tonumber(L, index)); break; @@ -84,7 +83,7 @@ static int sglua_dump_table(lua_State* L) { if (lua_istable(L, i)) { lua_pushnil(L); /* table nil */ - //lua_next pops the topmost element from the stack and + //lua_next pops the topmost element from the stack and //gets the next pair from the table while (lua_next(L, -1)) { /* table key val */ // we need to copy here, as a cast from "Number" to "String"