]> granicus.if.org Git - pdns/commitdiff
LuaWrapper: Fix comments since `ValueInRegistry` now takes an optional index
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 19 Dec 2016 17:08:29 +0000 (18:08 +0100)
committerPieter Lexis <pieter.lexis@powerdns.com>
Tue, 14 Feb 2017 13:06:27 +0000 (14:06 +0100)
(cherry picked from commit 28abe7558fd5c0d853a7544f49fb780aafbc49f3)

ext/luawrapper/include/LuaContext.hpp

index 273effd78774507a089bab86cde91aba37123d1a..2d30d1d468c3ff57b18ea5d3abba0825388dae9f 100644 (file)
@@ -1639,9 +1639,9 @@ private:
     /**************************************************/
     /*                   UTILITIES                    */
     /**************************************************/
-    // structure that will ensure that a certain is stored somewhere in the registry
+    // structure that will ensure that a certain value is stored somewhere in the registry
     struct ValueInRegistry {
-        // this constructor will clone and hold the value at the top of the stack in the registry
+        // this constructor will clone and hold the value at the specified index (or by default at the top of the stack) in the registry
         ValueInRegistry(lua_State* lua, int index=-1) : lua{lua}
         {
             lua_pushlightuserdata(lua, this);