diff options
| author | a1xd <[email protected]> | 2021-07-06 16:10:52 -0400 |
|---|---|---|
| committer | a1xd <[email protected]> | 2021-07-06 16:12:31 -0400 |
| commit | 9f1ebe0feaaaf1eef1ffa5706d270b7600edfc63 (patch) | |
| tree | c700e644fd96e93aa4b19cd72eaefe9cb21fa066 /wrapper/interop-exception.h | |
| parent | merge lut2 (diff) | |
| download | rawaccel-9f1ebe0feaaaf1eef1ffa5706d270b7600edfc63.tar.xz rawaccel-9f1ebe0feaaaf1eef1ffa5706d270b7600edfc63.zip | |
fix typo and wrapper/input code from lut2 merge
Diffstat (limited to 'wrapper/interop-exception.h')
| -rw-r--r-- | wrapper/interop-exception.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/wrapper/interop-exception.h b/wrapper/interop-exception.h index 8ebae5c..0e88b2c 100644 --- a/wrapper/interop-exception.h +++ b/wrapper/interop-exception.h @@ -10,12 +10,3 @@ public ref struct InteropException : System::Exception { InteropException(const std::exception& e) : InteropException(e.what()) {} }; - -public ref struct RawInputInteropException : InteropException { - RawInputInteropException(System::String^ what) : - InteropException(what) {} - RawInputInteropException(const char* what) : - InteropException(what) {} - RawInputInteropException(const std::exception& e) : - InteropException(e) {} -}; |