From 9f1ebe0feaaaf1eef1ffa5706d270b7600edfc63 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Tue, 6 Jul 2021 16:10:52 -0400 Subject: fix typo and wrapper/input code from lut2 merge --- wrapper/interop-exception.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'wrapper/interop-exception.h') 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) {} -}; -- cgit v1.2.3