diff options
author | Jose <jose@zeroc.com> | 2018-03-29 10:25:58 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-03-29 10:25:58 +0200 |
commit | 6153be8a23aec4ef162fc18a1aaa4cfc0d401245 (patch) | |
tree | 42a920f2d6fc2c781a210c47151c2a2c105ced70 /cpp/test/uwp/controller/ViewController.xaml.h | |
parent | ESLINT configuration (diff) | |
download | ice-6153be8a23aec4ef162fc18a1aaa4cfc0d401245.tar.bz2 ice-6153be8a23aec4ef162fc18a1aaa4cfc0d401245.tar.xz ice-6153be8a23aec4ef162fc18a1aaa4cfc0d401245.zip |
Do not unload DLLs with UWP test controller
Unloading DLLs in UWP controller was causing an AccessViolation.
Diffstat (limited to 'cpp/test/uwp/controller/ViewController.xaml.h')
-rw-r--r-- | cpp/test/uwp/controller/ViewController.xaml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/uwp/controller/ViewController.xaml.h b/cpp/test/uwp/controller/ViewController.xaml.h index 97fc0910e78..ea4919b6ff9 100644 --- a/cpp/test/uwp/controller/ViewController.xaml.h +++ b/cpp/test/uwp/controller/ViewController.xaml.h @@ -45,7 +45,7 @@ private: std::string getHost() const; void Hostname_SelectionChanged(Platform::Object^ sender, Windows::UI::Xaml::Controls::SelectionChangedEventArgs^ e); - std::map<std::string, std::pair<HINSTANCE, unsigned int>> _dlls; + std::map<std::string, HINSTANCE> _dlls; std::mutex _mutex; }; |