Add missing return for testcase
This commit is contained in:
parent
2471e3fc3a
commit
8f967f3341
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ public:
|
|||
virtual std::string ping(int excp) throw(int,MyNS::Exception2) = 0;
|
||||
virtual std::string pong(int excp) /* throws MyNS::Exception1 MyNS::Exception2 MyNS::Unexpected) */ = 0;
|
||||
virtual std::string genericpong(int excp) /* unspecified throws - exception is always DirectorException in C++, translated back to whatever thrown in java */ = 0;
|
||||
virtual std::string directorthrows_warning(int excp) throw(double) {}
|
||||
virtual std::string directorthrows_warning(int excp) throw(double) { return std::string(); }
|
||||
};
|
||||
|
||||
// Make a bar from a foo, so a call to Java Bar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue