Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Correct function pointer usage.
  • Loading branch information
jzmaddock committed Jul 7, 2020
commit 770aafe5431a0f704e82c43f50ae479707b38531
2 changes: 1 addition & 1 deletion tools/tgamma_large_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ int cpp_main(int argc, char*argv [])
return 1;
arg1.type |= dummy_param;

typedef boost::math::tuple<mp_type, mp_type, mp_type>(&proc_type)(mp_type);
typedef boost::math::tuple<mp_type, mp_type, mp_type>(*proc_type)(mp_type);

proc_type p = &generate;

Expand Down