Go to file
Matthias Gehre 6207d459a4 [clang-tidy] fix false-positive for cppcoreguidelines-pro-type-member-init with in-class initializers
Summary:
This fixes https://llvm.org/bugs/show_bug.cgi?id=30487 where
```
warning: uninitialized record type: 's' [cppcoreguidelines-pro-type-member-init]
```
is emitted on
```
struct MyStruct
{
    int a = 5;
    int b = 7;
};

int main()
{
    MyStruct s;
}
```

Reviewers: alexfh, aaron.ballman

Subscribers: nemanjai, cfe-commits

Differential Revision: https://reviews.llvm.org/D24848

llvm-svn: 282625
2016-09-28 20:06:18 +00:00
clang P0096R2: Implement more recent revision of SD-6 (C++ feature test macros). 2016-09-28 19:44:50 +00:00
clang-tools-extra [clang-tidy] fix false-positive for cppcoreguidelines-pro-type-member-init with in-class initializers 2016-09-28 20:06:18 +00:00
compiler-rt Add build script for symbolizer which can be linked into instrumented process. 2016-09-28 18:46:52 +00:00
debuginfo-tests New round of fixes for "Always compile debuginfo-tests for the host triple" 2014-10-18 23:47:59 +00:00
libclc Provide vstore_half helper to workaround clc restrictions 2016-09-21 20:15:55 +00:00
libcxx Revert r282483 - [cmake] Add linker option "-Wl,-z,defs" in standalone build 2016-09-27 18:54:02 +00:00
libcxxabi [libc++abi] Default to DLL annotations on Windows 2016-09-27 03:44:09 +00:00
libunwind libunwind: Add OpenBSD case for _Unwind_Ptr typedef 2016-09-28 15:37:21 +00:00
lld Sort headers. NFC. 2016-09-28 16:31:05 +00:00
lldb zorg Xcode python test suite target arch update 2016-09-28 16:43:47 +00:00
llgo [llgo] add llgo source path to LLVM_GO_PACKAGES 2016-07-27 03:01:00 +00:00
llvm [AMDGPU] Promote uniform i16 ops to i32 ops for targets that have 16 bit instructions 2016-09-28 20:05:39 +00:00
openmp Mixed type atomic routines for unsigned integers. 2016-09-27 17:38:48 +00:00
parallel-libs [SE] Change CoreTests target name 2016-09-27 15:32:52 +00:00
polly www: add new code coverage link to Polly website 2016-09-25 08:03:38 +00:00