Sunday, September 4, 2016

Digest for comp.lang.c++@googlegroups.com - 25 updates in 6 topics

"Rick C. Hodgin" <rick.c.hodgin@gmail.com>: Sep 04 07:48AM -0700

Go to church today. Learn who it is the Christians are talking
about when they talk about God, and what He has done, and has planned
up ahead for each of us:
 
http://biblehub.com/kjv/psalms/33.htm
 
6 By the word of the LORD were the heavens
made; and all the host of them by the breath
of his mouth.
 
7 He gathereth the waters of the sea together
as an heap: he layeth up the depth in storehouses.
 
8 Let all the earth fear the LORD: let all the
inhabitants of the world stand in awe of him.
 
9 For he spake, and it was done; he commanded,
and it stood fast.
 
He has glorious plans for your life, and for all of mankind. He extends
the invitation to all. Be one who receives. Live on.
 
Best regards,
Rick C. Hodgin
Reinhardt Behm <rbehm@hushmail.com>: Sep 04 10:53PM +0800

Rick C. Hodgin wrote:
 
> and it stood fast.
 
> He has glorious plans for your life, and for all of mankind. He extends
> the invitation to all. Be one who receives. Live on.
 
You are wrong here.
In C++ we have other creators and _we_ create them. We just call them
constructors.
 
--
Reinhardt
Melzzzzz <mel@zzzzz.com>: Sep 04 05:33PM +0200

On Sun, 04 Sep 2016 22:53:16 +0800
 
> You are wrong here.
> In C++ we have other creators and _we_ create them. We just call them
> constructors.
 
He spams comp.lang.c and comp.arch as well with this crap...
ram@zedat.fu-berlin.de (Stefan Ram): Sep 04 03:21PM

>I want to suppress the errors from headers. So, of course, the
>first thing I did was to use this option directly on »clang-tidy«:
>-header-filter=abcdefg
 
Ok, now clang-tidy is just issuing reports about my own file.
 
After several attempts failed to mark the included files as
"system headers", I finally resorted to actually editing the
MinGW header files. For example, when clang-tidy complained that
»__MINGW_NOTHROW« is a syntax error, I went into that header
file and added
 
#if __MINGW_GNUC_PREREQ (3, 3)
#define __MINGW_NOTHROW __attribute__ ((__nothrow__))
#else
#define __MINGW_NOTHROW

No comments: