diff options
| author | Enrico Granata <egranata@apple.com> | 2013-10-15 18:11:29 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2013-10-15 18:11:29 +0000 |
| commit | 0e6004b5c9ba44bf7e787e29d421f4e9e29daa42 (patch) | |
| tree | 678ff34bf4839833ab108cae6190dba5ad48c682 | |
| parent | dfa171034c2c53cfb5a59905218c56280dde3979 (diff) | |
| download | bcm5719-llvm-0e6004b5c9ba44bf7e787e29d421f4e9e29daa42.tar.gz bcm5719-llvm-0e6004b5c9ba44bf7e787e29d421f4e9e29daa42.zip | |
Unbreak the build on OSX by defining Initialize() and Terminate() for the Windows platform plugin
llvm-svn: 192724
| -rw-r--r-- | lldb/source/Plugins/Platform/Windows/PlatformWindows.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/Windows/PlatformWindows.h b/lldb/source/Plugins/Platform/Windows/PlatformWindows.h index 67d3e88fedd..e7017515819 100644 --- a/lldb/source/Plugins/Platform/Windows/PlatformWindows.h +++ b/lldb/source/Plugins/Platform/Windows/PlatformWindows.h @@ -24,10 +24,10 @@ class PlatformWindows : public Platform public: static void - Initialize(void); + Initialize(void) {} static void - Terminate(void); + Terminate(void) {} PlatformWindows(bool is_host); |

