[libcxx] r290656 - Fix stupid build error caused by a stupid person
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 27 21:56:17 PST 2016
Author: ericwf
Date: Tue Dec 27 23:56:16 2016
New Revision: 290656
URL: http://llvm.org/viewvc/llvm-project?rev=290656&view=rev
Log:
Fix stupid build error caused by a stupid person
Modified:
libcxx/trunk/include/__debug
Modified: libcxx/trunk/include/__debug
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/__debug?rev=290656&r1=290655&r2=290656&view=diff
==============================================================================
--- libcxx/trunk/include/__debug (original)
+++ libcxx/trunk/include/__debug Tue Dec 27 23:56:16 2016
@@ -54,6 +54,9 @@ _LIBCPP_BEGIN_NAMESPACE_STD
struct _LIBCPP_TYPE_VIS_ONLY __libcpp_debug_info {
_LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
+ __libcpp_debug_info()
+ : __file_(nullptr), __line_(-1), __pred_(nullptr), __msg_(nullptr) {}
+ _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
__libcpp_debug_info(const char* __f, int __l, const char* __p, const char* __m)
: __file_(__f), __line_(__l), __pred_(__p), __msg_(__m) {}
const char* __file_;
More information about the cfe-commits
mailing list