GCC warnings for comma operator1812 (4/10/2013 11:07:14 PM) comp.lang.c Recently I wrote a macro to set a bit field at an arbitrary location in an =
array of some unsigned integral type. (Can't show it because it's propriet=
ary.) The bit field is specified as a bit offset from... W
Implementation of language features2718 (3/11/2013 10:39:52 PM) comp.lang.c++ Is there a reference (besides the ARM and hopefully consisting of WWW page(=
s).) that outlines possible implementations (that is, generated object code=
) of C++ features? Something to point an experience C... W
Member vs. non-member operator overload disambiguation336 (11/29/2012 10:33:26 PM) comp.lang.c++ Suppose an operator invocation matches a free-standing operator and a member operator of the class of the first argument equally well. Is this ambiguous? Or, does the Standard give member operators higher or ... W
Proposal for restricted argument-dependent name lookup034 (11/24/2012 11:51:14 PM) comp.lang.c++ An access level specifier would be permitted after the "friend" keyword. T=
he default would be "private" for backwards compatibility. If the sequence=
"explicit friend;" appeared in a class declaration, o... W
Alternative approach to bitfields #2361 (7/23/2012 2:28:09 AM) comp.lang.c The idea is to define the bitfields using a "map" structure of arrays of char, with each char corresponding to a bit in an unsigned integer. Here is some example code:
/* Notes
** 1. parameters to these m... W
Alternative approach to bitfields1133 (7/23/2012 2:21:44 AM) comp.lang.c++ The idea is to define the bitfields using a "map" structure of arrays of char, with each char corresponding to a bit in an unsigned integer. Here is some example code:
/* Notes
** 1. parameters to these m... W
table generation with recursive templates245 (4/30/2009 6:49:13 PM) comp.lang.c++ I wrote this code to generate an intialized array of 256 32-bit words: typedef unsigned char u_int8; typedef unsigned long u_int32; template struct TG { typedef TG Sub_start1; typedef TG Sub_start2... W
Singletons / classes with only one member1027 (2/27/2009 8:30:50 PM) comp.lang.c++ Suppose you have a class that has only one instance, and there is little reason to think it would ever make sense for the class to have more than one instance. What are some criteria for deciding whether it sh... W
one task per priority1541 (1/13/2009 9:13:34 PM) comp.arch.embedded Has anyone every tried to implement a message-based embedded SW system, of large or medium complexity, with one execution thread per priority? ... Walt
bitset<32> and bitset<64> efficiency2029 (11/28/2012 8:58:59 AM) comp.lang.c++ Hi,
I would like to know whether using bitset for bit operations on a 32bit machine would generally be as efficient as using a 32bit int.
Moreover, if the answer is yes would it also hold for bitset and 64... narinder.claire1(29)
Member vs. non-member operator overload disambiguation336 (11/29/2012 10:33:26 PM) comp.lang.c++ Suppose an operator invocation matches a free-standing operator and a member operator of the class of the first argument equally well. Is this ambiguous? Or, does the Standard give member operators higher or ... wkaras(191)
Why C++ Is Not =?windows-1252?Q?=93Back=94?=5647 (12/4/2012 5:39:28 PM) comp.lang.c++ Why C++ Is Not �Back� by John Sonmez
http://simpleprogrammer.com/2012/12/01/why-c-is-not-back/
"I love C++."
"C++ taught me how to really write code."
"Back in the day I would study the intricacie... lmc(186)
Does pure, standard C++ alone serve any practical purpose?923 (12/23/2012 8:13:39 PM) comp.lang.c++ Just wondering. Are there any branches of programming industry where
very good knowledge of C++ and ONLY C++ suffices or is the language
alone, without the aid of external frameworks completely useless
unles... pilarp(10)
Should you perform complex tasks in the constructor?2323 (1/10/2013 9:54:21 PM) comp.lang.c++ I've seen various arguments against this primarily centring on the fact
that the only way to return errors in a constructor is to throw an
exception. Of course exceptions seem to be a somewhat controversial... chicken(50)
C/C++ abstraction layer1215 (1/28/2013 7:21:07 PM) comp.lang.c++ Hello guys,
please help me with following problem.
I have a.c which includes a.h
i have b.c which includes b.h
i have b.h which includes c.h (c.lib included)
a.c uses some functions which are def... jismagic(54)
size of a pointer on 4-bit system11821 (1/30/2013 2:30:01 AM) comp.lang.c Hello
I ran in a such interview question on the net: what is the size of pointer
on 4-bit system. Regardless of the fact that such system probably don't
exist, what would be the reasonable answer to such... mark_cruzNOTFORSPAM(178)
Implementation of language features2718 (3/11/2013 10:39:52 PM) comp.lang.c++ Is there a reference (besides the ARM and hopefully consisting of WWW page(=
s).) that outlines possible implementations (that is, generated object code=
) of C++ features? Something to point an experience C... wkaras(191)
GCC warnings for comma operator1812 (4/10/2013 11:07:14 PM) comp.lang.c Recently I wrote a macro to set a bit field at an arbitrary location in an =
array of some unsigned integral type. (Can't show it because it's propriet=
ary.) The bit field is specified as a bit offset from... wkaras(191)