[Lldb-commits] [lldb] r322188 - Add empty() function to the Environment class

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Jan 10 06:17:40 PST 2018


Author: labath
Date: Wed Jan 10 06:17:40 2018
New Revision: 322188

URL: http://llvm.org/viewvc/llvm-project?rev=322188&view=rev
Log:
Add empty() function to the Environment class

Needed to make the previous Freebsd fix work.

Modified:
    lldb/trunk/include/lldb/Utility/Environment.h

Modified: lldb/trunk/include/lldb/Utility/Environment.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Utility/Environment.h?rev=322188&r1=322187&r2=322188&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Utility/Environment.h (original)
+++ lldb/trunk/include/lldb/Utility/Environment.h Wed Jan 10 06:17:40 2018
@@ -46,6 +46,7 @@ public:
   using Base::begin;
   using Base::clear;
   using Base::count;
+  using Base::empty;
   using Base::end;
   using Base::erase;
   using Base::find;




More information about the lldb-commits mailing list