Skip to content

Commit

Permalink
Fix: swig declaration function signature mismatch. This closes #18.
Browse files Browse the repository at this point in the history
  • Loading branch information
timhutton committed Jun 27, 2016
1 parent b8d6926 commit 981ae24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Malmo/src/CSharpWrapper/MalmoNETNative.i
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class ArgumentParser
public:
ArgumentParser(const std::string& title);

%exception parse(const std::vector< std::string>& args) %{
%exception parse(const std::vector< std::string >& args) %{
try {
$action
} catch (boost::program_options::invalid_command_line_syntax& e) {
Expand Down Expand Up @@ -169,7 +169,7 @@ public:
%exception startMission(
const MissionSpec& mission
, const ClientPool& client_pool
, const MissionRecord& mission_record
, const MissionRecordSpec& mission_record
, int role
, std::string unique_experiment_id
) %{
Expand All @@ -190,7 +190,7 @@ public:

%exception startMission(
const MissionSpec& mission
, const MissionRecord& mission_record
, const MissionRecordSpec& mission_record
) %{
try {
$action
Expand Down Expand Up @@ -226,7 +226,7 @@ public:
%exception startMission(
const MissionSpec& mission
, const ClientPool& client_pool
, const MissionRecord& mission_record
, const MissionRecordSpec& mission_record
, int role
, std::string unique_experiment_id
) %{
Expand All @@ -247,7 +247,7 @@ public:

%exception startMission(
const MissionSpec& mission
, const MissionRecord& mission_record
, const MissionRecordSpec& mission_record
) %{
try {
$action
Expand Down

0 comments on commit 981ae24

Please sign in to comment.