diff options
author | Greg Clayton <gclayton@apple.com> | 2013-04-18 22:45:39 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-04-18 22:45:39 +0000 |
commit | 7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab (patch) | |
tree | 662d44a97baffe8778f555b43203ad0257c71808 /lldb/source/Interpreter/Options.cpp | |
parent | 9f7a221fdcaf250db64b441558647384785cde5e (diff) | |
download | bcm5719-llvm-7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab.tar.gz bcm5719-llvm-7b0992d9cd982f4e43ca1bd2c3eaf467e7600cab.zip |
After discussing with Chris Lattner, we require C++11, so lets get rid of the macros and just use C++11.
llvm-svn: 179805
Diffstat (limited to 'lldb/source/Interpreter/Options.cpp')
-rw-r--r-- | lldb/source/Interpreter/Options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/Options.cpp b/lldb/source/Interpreter/Options.cpp index 9b4211bd508..8318c4dd9ba 100644 --- a/lldb/source/Interpreter/Options.cpp +++ b/lldb/source/Interpreter/Options.cpp @@ -901,7 +901,7 @@ Options::HandleOptionArgumentCompletion ) { const OptionDefinition *opt_defs = GetDefinitions(); - STD_UNIQUE_PTR(SearchFilter) filter_ap; + std::unique_ptr<SearchFilter> filter_ap; int opt_arg_pos = opt_element_vector[opt_element_index].opt_arg_pos; int opt_defs_index = opt_element_vector[opt_element_index].opt_defs_index; |