From 28868363fa3a7e9ae3a6d2c838730b83d69b86af Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 26 Mar 2016 22:15:03 +0100 Subject: [PATCH] proper C++ comment --- libs/ardour/luabindings.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/luabindings.cc b/libs/ardour/luabindings.cc index 75dacad86f..a52fb26b4e 100644 --- a/libs/ardour/luabindings.cc +++ b/libs/ardour/luabindings.cc @@ -375,7 +375,7 @@ LuaBindings::common (lua_State* L) .addFunction ("no_inplace", &PluginInsert::no_inplace) .addFunction ("input_map", &PluginInsert::input_map) .addFunction ("output_map", &PluginInsert::output_map) -#ifndef NDEBUG -- this is not safe, prototyping only +#ifndef NDEBUG // this is not safe, prototyping only .addFunction ("set_no_inplace", &PluginInsert::set_no_inplace) .addFunction ("set_input_map", &PluginInsert::set_input_map) .addFunction ("set_output_map", &PluginInsert::set_output_map)