Fix a rare drag/drop issue

This commit is contained in:
Eduardo Bart
2012-07-31 06:34:45 -03:00
parent 6ef44d462d
commit f4641333f4
3 changed files with 14 additions and 11 deletions

View File

@@ -42,10 +42,7 @@ protected:
};
/// Throws a generic exception
template<typename... T>
void throw_exception(const std::string& what) {
throw exception(what);
}
inline void throw_exception(const std::string& what) { throw exception(what); }
}