Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
BudVVeezer
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Using Sarif with Clang and CodeSonar
(blogs.grammatech.com)
1 points
by
BudVVeezer
7y ago
|
0 comments
2.
▲
Structure and Distribution of an Unrecognized Interstitium in Human Tissues
(nature.com)
1 points
by
BudVVeezer
8y ago
|
0 comments
3.
▲
by
BudVVeezer
9y ago
The title is incorrect, it's WG23, not WG32.
4.
▲
Fall ISO C++ standards meeting (Albuquerque)
(herbsutter.com)
1 points
by
BudVVeezer
9y ago
|
0 comments
5.
▲
by
BudVVeezer
9y ago
> __they don't want these things next to where they live__. Which is the precise definition of Not In My Back Yard...
6.
▲
by
BudVVeezer
9y ago
It's consistent with for (init; condition;) {} and solves a problem like: if (std::vector<int> v = f(); !v.empty()) { // Use v } without requiring an extra compound statement to limit the scope and lifetime of v.
7.
▲
by
BudVVeezer
9y ago
Not quite. It was submitted for PDTS (proposed draft technical standard), which means it goes out for balloting to ISO national bodies. That balloting either succeeds (at which point you have a Techincal Specification) or it comes back to t
8.
▲
by
BudVVeezer
9y ago
The clang-tidy tool has some C++ Core Guideline checks under the cppcoreguidelines module.
9.
▲
by
BudVVeezer
9y ago
Some of these rules are currently in clang-tidy, but the coverage is by no means comprehensive. Patches always welcome. :-)
10.
▲
by
BudVVeezer
9y ago
What's considered critical or difficult to discover is a bit subjective, but: It's easy to forget that alignment is important on some architectures (other than for performance reasons), so be careful when using placement new: htt
11.
▲
Software Engineering Institute Makes CERT C++ Coding Standard Freely Available
(sei.cmu.edu)
179 points
by
BudVVeezer
9y ago
|
24 comments
12.
▲
by
BudVVeezer
10y ago
Yes and no. Many compilers support #pragma once, but whether your build environment handles it is another matter. Having your headers on network drives, or having symlinks to your headers, etc can cause issues with #pragma once handling (de
13.
▲
by
BudVVeezer
10y ago
Is it the /d1reportSingleClassLayoutXXX flag, described here? https://blogs.msdn.microsoft.com/vcblog/2007/05/17/diagnosin...
14.
▲
DoJ, DoA, and DoI to Rethink Dakota Access Pipeline
(justice.gov)
2 points
by
BudVVeezer
10y ago
|
0 comments
15.
▲
History of Labor Day
(dol.gov)
2 points
by
BudVVeezer
10y ago
|
0 comments
16.
▲
A huge crack is spreading across one of Antarctica’s biggest ice shelves
(thestar.com)
211 points
by
BudVVeezer
10y ago
|
104 comments
17.
▲
by
BudVVeezer
10y ago
You are forgetting attributes, which can be empty and are grammatical sequences (so you can add them infinitely). [[]][[]][]()[[]][[]]{}();
18.
▲
9.99999 reasons why .9999 (repeating) = 1
(youtube.com)
4 points
by
BudVVeezer
11y ago
|
0 comments
19.
▲
by
BudVVeezer
11y ago
Ah, that's right, ranges was a new work item planned for TS (but still not planned for IS in C++17).
20.
▲
by
BudVVeezer
11y ago
The author may be a bit confused as to what C++17 will be. Modules will be in a TS, most likely. Transactional memory, concepts, ranges, and filesystem are already in published TSes (not planned for the IS in this round). Out of the list pr
21.
▲
Mapping Police Violence
(mappingpoliceviolence.org)
1 points
by
BudVVeezer
11y ago
|
0 comments
22.
▲
Clang with Microsoft CodeGen in VS 2015 Update 1
(blogs.msdn.com)
118 points
by
BudVVeezer
11y ago
|
37 comments
23.
▲
VC++ turns 20 (2013)
(channel9.msdn.com)
1 points
by
BudVVeezer
11y ago
|
0 comments
24.
▲
Festival of Bad Ad Hoc Hypotheses
(bahfest.com)
2 points
by
BudVVeezer
11y ago
|
0 comments
25.
▲
RegEx match open tags except XHTML self-contained tags
(stackoverflow.com)
1 points
by
BudVVeezer
11y ago
|
0 comments
26.
▲
Ship of Theseus
(en.wikipedia.org)
46 points
by
BudVVeezer
11y ago
|
50 comments
27.
▲
by
BudVVeezer
11y ago
Boost is a very large project with varying degrees of API quality, and so when you say it depends on boost, I wonder "the good parts (any, variant, stuff that usually gets looked at for standardization)" or "the bad parts (Sp
28.
▲
Type Casting Verification: Stopping an Emerging Attack Vector [pdf]
(usenix.org)
8 points
by
BudVVeezer
11y ago
|
0 comments
29.
▲
by
BudVVeezer
11y ago
I would highly recommend looking at the CERT C Coding Standards, which are available for free: https://www.securecoding.cert.org/confluence/display/c/SEI+C... One thing to note, they split them into recommend
30.
▲
by
BudVVeezer
11y ago
Yes, the most vexing parse. https://en.wikipedia.org/wiki/Most_vexing_parse
More ›