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

dump.lua - github.com/torch/argcheck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01072effd91c03e0b7dafed056f193a33f02fdf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
local doc = require 'argcheck.doc'

local ffi = require 'ffi'

doc.__noop = ffi.new('int*')
ffi.gc(doc.__noop,
       function()
          print(doc.stop())
       end)

doc.record()