Fix use of non-constexpr C++14 addressof
authorEric Fiselier <eric@efcs.ca>
Sun, 16 Oct 2016 03:49:18 +0000 (03:49 +0000)
committerEric Fiselier <eric@efcs.ca>
Sun, 16 Oct 2016 03:49:18 +0000 (03:49 +0000)
llvm-svn: 284325

libcxx/include/experimental/optional

index ebe11e6..57c5335 100644 (file)
@@ -488,7 +488,7 @@ public:
     {
         _LIBCPP_ASSERT(this->__engaged_, "optional operator-> called for disengaged value");
 #ifndef _LIBCPP_HAS_NO_BUILTIN_ADDRESSOF
-        return _VSTD::addressof(this->__val_);
+        return __builtin_addressof(this->__val_);
 #else
         return __operator_arrow(__has_operator_addressof<value_type>{});
 #endif