ソースを参照

Using Ruse to make handling function pointers easier

channel
Ludovic 'Archivist' Lagouardette 3年前
コミット
cebb8aa3d6
1個のファイルの変更4行の追加0行の削除
  1. +4
    -0
      include/gp/functional/function.hpp

+ 4
- 0
include/gp/functional/function.hpp ファイルの表示

@ -122,6 +122,10 @@ namespace gp{
);
}
function(ret f_ptr(args...))
: function(f_ptr, nullopt)
{}
function(function&& rhs)
: alloc(rhs.alloc)
, invokator(rhs.invokator)

読み込み中…
キャンセル
保存