Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Module.lua')
-rw-r--r--Module.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/Module.lua b/Module.lua
index d9410c9..c9b73cc 100644
--- a/Module.lua
+++ b/Module.lua
@@ -171,7 +171,7 @@ function Module:getParameters()
if storageAndOffset == nil then
return nil
end
- local storage, offset = unpack(storageAndOffset)
+ local _, offset = unpack(storageAndOffset)
return offset
end