Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
| From | Ian Collins <ian-news@hotmail.com> |
|---|---|
| Newsgroups | comp.lang.c |
| Subject | Re: should c be a subset of c++? |
| Date | 2015-08-28 08:49 +1200 |
| Message-ID | <d49berFrgntU8@mid.individual.net> (permalink) |
| References | (13 earlier) <ada12ddd-385a-4378-b718-7391db357b65@googlegroups.com> <mrmq63$ktd$1@dont-email.me> <ln6140wrnt.fsf@kst-u.example.com> <d498c4FrgntU6@mid.individual.net> <mrnsa2$vpn$1@dont-email.me> |
James Kuyper wrote: > On 08/27/2015 03:56 PM, Ian Collins wrote: >> Keith Thompson wrote: >>> >>> Restricting yourself to a subset of a language, for the purpose >>> of avoiding features that you see as overly complicated, requires >>> discipline -- and unlike restricting to, say, ISO C99 or ISO C++11, >>> the compiler isn't going to help you maintain that discipline. >>> Third-party tools can help, but they have to exist first. >> >> All software development requires discipline. Every coding standard I >> have seen contained rules that tools didn't enforce. That is why we >> have practices such as code review, pair programming and collective code >> ownership. > > That's all the more reason to avoid making things more difficult by > creating new things you need to be disciplined about. You shouldn't > restrict yourself to a subset of a given language without strong reasons > to avoid the rest of that language, and if you do have such a reason, it > also qualifies as a reason to avoid using that language, so you won't > need to exercise that discipline. The argument applies to C as well as C++. A common rule in both embedded C and C++ is "No dynamic allocation". Another in embedded C would be "No VLAs". Both require discipline and neither qualifies as a reason to avoid using that language. > It's perfectly natural and normal to avoid using parts of a language > that are irrelevant to what you're doing - there's correspondingly no > need to be disciplined about it. For example, people who don't need to > work with complex numbers can easily avoid that by never #including > <complex.h>, never using the keywords _Complex (or _Imaginary), and > never using the corresponding functions from the math library - it's > trivial and requires no discipline. I agree. > However, when people say they want to avoid using C++ because they don't > like some of it's features, it must be the case that they see > accidentally using those features as a dangerous possibility, requiring > discipline to avoid. Personally, I don't understand the danger - but if > they need to maintain discipline to avoid using a dangerous feature, > then avoiding the language itself to avoid the need to maintain > discipline can be a reasonable thing to do. One of the most common embedded C++ rules is "No exceptions" which is enforceable through compiler options on every compiler I've used for embedded work. The are a number of other common exclusions (excluding run time type identification) which are also enforceable through compiler options. Other exclusions tend to be matters of style, or reflections of a team's philosophy or comfort zone. A good example of the latter is a team of C programmers who want some extra language features such as functions overloading. So you could argue these guidelines aren't restricting C++, that are extending C :) -- Ian Collins
Back to comp.lang.c | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
should c be a subset of c++? G G <gdotone@gmail.com> - 2015-08-25 14:14 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-25 14:43 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-25 15:26 -0700
Re: should c be a subset of c++? Geoff <geoff@invalid.invalid> - 2015-08-30 09:51 -0700
Re: should c be a subset of c++? Geoff <geoff@invalid.invalid> - 2015-08-30 10:46 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-30 20:55 +0100
Re: should c be a subset of c++? Geoff <geoff@invalid.invalid> - 2015-08-30 13:14 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-31 00:04 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-31 03:01 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-31 12:11 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-31 06:31 -0700
Re: should c be a subset of c++? Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2015-08-31 10:24 -0400
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-31 18:04 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-31 11:28 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 00:31 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-31 17:19 -0700
Re: should c be a subset of c++? Richard Damon <Richard@Damon-Family.org> - 2015-08-31 22:18 -0400
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 13:32 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 05:37 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 16:51 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 09:45 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 20:04 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 12:15 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 20:33 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 12:41 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 21:02 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 13:14 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-02 00:42 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 17:24 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 13:34 -0700
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-02 19:07 +0200
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-02 19:13 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-02 10:25 -0700
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-04 09:58 +0200
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-04 10:06 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 06:44 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 14:49 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 07:21 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 07:22 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 07:33 -0700
Re: should c be a subset of c++? Keith Thompson <kst-u@mib.org> - 2015-09-01 08:32 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-01 08:49 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-01 22:58 +0200
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 22:07 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-02 13:12 +0200
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 16:48 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 09:15 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 20:00 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-01 12:57 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-01 23:57 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-01 22:57 +0200
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-01 22:04 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-02 13:29 +0200
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-02 12:37 +0100
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-04 04:13 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-03 23:59 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-04 10:13 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 01:23 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-04 09:52 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 02:03 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-04 10:20 +0100
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-04 11:33 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 03:13 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-04 12:53 +0200
Re: should c be a subset of c++? raltbos@xs4all.nl (Richard Bos) - 2015-09-04 16:31 +0000
Re: should c be a subset of c++? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-04 11:43 -0500
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 15:07 -0700
Re: should c be a subset of c++? Tim Rentsch <txr@alumni.caltech.edu> - 2015-09-06 13:36 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 13:57 -0700
Re: should c be a subset of c++? Geoff <geoff@invalid.invalid> - 2015-09-08 10:36 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 06:02 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-04 16:53 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 09:59 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-04 21:13 +0100
Re: should c be a subset of c++? Melzzzzz <mel@zzzzz.com> - 2015-09-04 22:20 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 13:45 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-04 22:21 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 14:53 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 00:48 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-04 20:02 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 13:10 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 05:31 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 15:46 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 22:19 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 14:34 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 07:14 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 17:39 +0200
Re: should c be a subset of c++? Keith Thompson <kst-u@mib.org> - 2015-09-06 12:05 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 12:13 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 06:05 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 06:11 -0700
Re: should c be a subset of c++? Richard Damon <Richard@Damon-Family.org> - 2015-09-05 10:10 -0400
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 08:51 -0700
Re: should c be a subset of c++? Richard Damon <Richard@Damon-Family.org> - 2015-09-05 16:30 -0400
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-05 13:52 -0700
Re: should c be a subset of c++? Richard Damon <Richard@Damon-Family.org> - 2015-09-05 21:17 -0400
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-06 05:47 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 00:02 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-06 08:20 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 02:23 -0700
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-05 16:34 +0000
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 16:17 +0100
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-05 16:31 +0000
Re: should c be a subset of c++? raltbos@xs4all.nl (Richard Bos) - 2015-09-05 19:06 +0000
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 21:12 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-05 22:23 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 14:30 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 07:23 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 17:15 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 09:21 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 09:34 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 21:42 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 17:01 -0700
Re: should c be a subset of c++? "Osmium" <r124c4u102@comcast.net> - 2015-09-06 13:46 -0500
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 12:01 -0700
Re: should c be a subset of c++? "Osmium" <r124c4u102@comcast.net> - 2015-09-06 14:22 -0500
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 12:29 -0700
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 12:36 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 22:20 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 13:49 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 23:13 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 14:23 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 11:55 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 04:00 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-07 12:44 +0100
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-09-06 22:32 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 14:36 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 00:08 +0200
Re: should c be a subset of c++? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-06 23:33 -0500
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-09-07 12:18 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 21:51 +0200
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 21:14 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 13:23 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-06 22:40 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 14:05 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 00:11 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 16:43 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 01:10 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 17:23 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 01:36 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 17:54 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 11:03 +0200
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 15:17 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-07 07:49 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 22:43 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 18:22 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 11:00 +0200
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 15:10 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 07:42 -0700
Re: should c be a subset of c++? Les Cargill <lcargill99@comcast.com> - 2015-09-07 10:26 -0500
Re: should c be a subset of c++? Ike Naar <ike@iceland.freeshell.org> - 2015-09-07 16:10 +0000
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 22:39 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 15:16 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 17:17 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 08:27 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 21:13 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 16:49 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 10:54 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 02:26 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-09-07 12:26 +0200
Re: should c be a subset of c++? Robert Wessel <robertwessel2@yahoo.com> - 2015-09-06 23:37 -0500
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-07 00:57 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 16:57 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-09-06 09:26 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 20:41 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 16:55 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-07 01:21 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-06 11:15 -0700
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-09-06 20:03 +0100
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-06 20:49 +0100
Re: should c be a subset of c++? Rosario19 <Ros@invalid.invalid> - 2015-09-08 07:55 +0200
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-05 16:27 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-09-04 15:14 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-09-05 00:58 +0100
Re: should c be a subset of c++? glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2015-09-05 01:11 +0000
Re: should c be a subset of c++? raltbos@xs4all.nl (Richard Bos) - 2015-09-05 19:12 +0000
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-26 11:39 +1200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-25 17:47 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-26 12:55 +1200
Re: should c be a subset of c++? Richard Heathfield <rjh@cpax.org.uk> - 2015-08-26 07:14 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 03:54 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-26 12:01 +0100
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 04:07 -0700
Re: should c be a subset of c++? gazelle@shell.xmission.com (Kenny McCormack) - 2015-08-26 13:13 +0000
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 06:28 -0700
Re: should c be a subset of c++? Mark Storkamp <mstorkamp@yahoo.com> - 2015-08-26 09:05 -0500
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 07:18 -0700
Re: should c be a subset of c++? Ken Brody <kenbrody@spamcop.net> - 2015-08-26 13:31 -0400
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-26 18:52 +0100
Re: should c be a subset of c++? James Kuyper <jameskuyper@verizon.net> - 2015-08-26 14:04 -0400
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-27 09:25 +1200
Re: should c be a subset of c++? gazelle@shell.xmission.com (Kenny McCormack) - 2015-08-26 21:37 +0000
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 14:49 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-27 13:16 +1200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 18:47 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-27 14:46 +1200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-26 19:58 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-27 11:31 +0200
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-27 10:40 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 03:34 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-27 12:54 +0200
Re: should c be a subset of c++? Keith Thompson <kst-u@mib.org> - 2015-08-27 10:46 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 07:56 +1200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-27 13:08 -0700
Re: should c be a subset of c++? James Kuyper <jameskuyper@verizon.net> - 2015-08-27 16:36 -0400
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 08:49 +1200
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-28 10:24 +0200
Re: should c be a subset of c++? Les Cargill <lcargill99@comcast.com> - 2015-08-27 12:00 -0500
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 11:55 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-27 14:09 +0200
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 15:14 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-28 11:38 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-27 07:17 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 16:24 +0100
Re: should c be a subset of c++? Melzzzzz <mel@zzzzz.com> - 2015-08-27 18:58 +0200
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 20:35 +0100
Re: should c be a subset of c++? fir <profesor.fir@gmail.com> - 2015-08-27 13:07 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 21:36 +0100
Re: should c be a subset of c++? fir <profesor.fir@gmail.com> - 2015-08-27 14:31 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 08:25 +1200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-27 13:30 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 14:49 -0700
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-27 22:34 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 16:33 -0700
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 00:31 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 18:16 -0700
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 10:08 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 04:03 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 23:18 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 04:34 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 08:03 +1200
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 12:02 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 06:02 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 07:52 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 16:14 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 11:26 +1200
Re: should c be a subset of c++? Keith Thompson <kst-u@mib.org> - 2015-08-28 18:06 -0700
Re: should c be a subset of c++? Martin Shobe <martin.shobe@yahoo.com> - 2015-08-28 18:33 -0500
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 11:38 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 17:08 -0700
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 17:12 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 12:15 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 18:20 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-28 17:13 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-28 12:38 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 04:58 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-28 15:36 +0200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 07:11 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 10:57 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 16:21 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 11:34 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 17:16 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 13:03 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 18:38 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-27 23:29 +0100
Re: should c be a subset of c++? Melzzzzz <mel@zzzzz.com> - 2015-08-28 01:15 +0200
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 11:25 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-27 16:39 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 00:56 +0100
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 00:45 +0000
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-28 13:05 +1200
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 10:46 +0100
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 11:38 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 05:23 -0700
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 13:51 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 07:20 -0700
Re: should c be a subset of c++? Martin Shobe <martin.shobe@yahoo.com> - 2015-08-28 09:55 -0500
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 15:10 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 09:03 -0700
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 13:38 +0100
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 06:11 -0700
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 13:59 +0000
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-28 07:31 -0700
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-28 20:36 +0100
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-28 15:55 +0200
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 14:57 +0000
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 17:45 +0100
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 22:36 +0100
Re: should c be a subset of c++? jt@toerring.de (Jens Thoms Toerring) - 2015-08-28 23:38 +0000
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-29 09:29 +0200
Re: should c be a subset of c++? Ben Bacarisse <ben.usenet@bsb.me.uk> - 2015-08-28 17:52 +0100
Re: should c be a subset of c++? Bartc <bc@freeuk.com> - 2015-08-28 19:27 +0100
Re: should c be a subset of c++? Melzzzzz <mel@zzzzz.com> - 2015-08-28 21:30 +0200
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-29 08:14 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-26 18:51 -0700
Re: should c be a subset of c++? Ian Collins <ian-news@hotmail.com> - 2015-08-27 14:48 +1200
Re: should c be a subset of c++? Malcolm McLean <malcolm.mclean5@btinternet.com> - 2015-08-26 20:15 -0700
Re: should c be a subset of c++? Ayan <selfjam@gmail.com> - 2015-08-26 23:59 -0400
Re: should c be a subset of c++? Lőrinczy Zsigmond <zsiga@nospam.for.me> - 2015-08-27 12:03 +0200
Re: should c be a subset of c++? "Rick C. Hodgin" <rick.c.hodgin@gmail.com> - 2015-08-27 03:33 -0700
Re: should c be a subset of c++? David Brown <david.brown@hesbynett.no> - 2015-08-27 13:04 +0200
csiph-web