Cosmetic syntax tweak using throw in Octave directors
This commit is contained in:
parent
63f7315c8a
commit
4e0b2f1402
1 changed files with 3 additions and 3 deletions
|
|
@ -51,7 +51,7 @@ namespace Swig {
|
|||
public:
|
||||
static void raise(const char *msg) {
|
||||
// ... todo
|
||||
throw(DirectorException());
|
||||
throw DirectorException();
|
||||
}
|
||||
|
||||
static void raise(const octave_value &ov, const char *msg) {
|
||||
|
|
@ -64,7 +64,7 @@ namespace Swig {
|
|||
public:
|
||||
static void raise(const char *msg) {
|
||||
// ... todo
|
||||
throw(DirectorTypeMismatchException());
|
||||
throw DirectorTypeMismatchException();
|
||||
}
|
||||
|
||||
static void raise(const octave_value &ov, const char *msg) {
|
||||
|
|
@ -77,7 +77,7 @@ namespace Swig {
|
|||
public:
|
||||
static void raise(const char *msg) {
|
||||
// ... todo
|
||||
throw(DirectorPureVirtualException());
|
||||
throw DirectorPureVirtualException();
|
||||
}
|
||||
|
||||
static void raise(const octave_value &ov, const char *msg) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue