473,799 Members | 3,817 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

WG14 Post Santa Clara mailing available

The Post Santa Clara mailing is now available from the WG14 web site at
http://www.open-std.org/jtc1/sc22/wg14

I also updated some of the other information on the pages.

Best regards
Keld Simonsen
Oct 12 '08 #1
26 1758
Keld Jørn Simonsen <ke**@dkuug.dkw rites:
The Post Santa Clara mailing is now available from the WG14 web site at
http://www.open-std.org/jtc1/sc22/wg14

I also updated some of the other information on the pages.
I suggest posting these announcements to comp.std.c. (A cross-post to
comp.lang.c would probably be ok.)

--
Keith Thompson (The_Other_Keit h) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Oct 12 '08 #2
On 12 Oct 2008 at 18:58, Keith Thompson wrote:
Keld Jørn Simonsen <ke**@dkuug.dkw rites:
>The Post Santa Clara mailing is now available from the WG14 web site at
http://www.open-std.org/jtc1/sc22/wg14

I suggest posting these announcements to comp.std.c. (A cross-post to
comp.lang.c would probably be ok.)
Really? How magnanimous! Normally only versions of the C Standard that
were released before the Barcelona Olympics are considered topical here
by you and your allies.

Oct 12 '08 #3
Antoninus Twink wrote:
On 12 Oct 2008 at 18:58, Keith Thompson wrote:
>Keld Jørn Simonsen <ke**@dkuug.dkw rites:
>>The Post Santa Clara mailing is now available from the WG14 web site at
http://www.open-std.org/jtc1/sc22/wg14
I suggest posting these announcements to comp.std.c. (A cross-post to
comp.lang.c would probably be ok.)

Really? How magnanimous! Normally only versions of the C Standard that
were released before the Barcelona Olympics are considered topical here
by you and your allies.
The C standard is off topic here

!!!
--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Oct 12 '08 #4
Keld Jørn Simonsen wrote:
The Post Santa Clara mailing is now available from the WG14 web site at
http://www.open-std.org/jtc1/sc22/wg14

I also updated some of the other information on the pages.

Best regards
Keld Simonsen
Thanks for this info.
--
jacob navia
jacob at jacob point remcomp point fr
logiciels/informatique
http://www.cs.virginia.edu/~lcc-win32
Oct 12 '08 #5
jacob navia wrote:
Antoninus Twink wrote:
>Keith Thompson wrote:
>>Keld Jørn Simonsen <ke**@dkuug.dkw rites:

The Post Santa Clara mailing is now available from the WG14
web site at http://www.open-std.org/jtc1/sc22/wg14

I suggest posting these announcements to comp.std.c.
(A cross-post to comp.lang.c would probably be ok.)

Really? How magnanimous! Normally only versions of the C
Standard that were released before the Barcelona Olympics are
considered topical here by you and your allies.

The C standard is off topic here
Now Twink is a pure troll, and only posts to disturb the
newsgroup. You, on the other hand, may disagree with many, but at
least don't appear to bear c.l.c any ill will. Such a comment, if
not surrounded by smilies, is highly harmful and will mislead all
newbies. Even with smilies, it is not good.

Some useful references about C:
<http://www.ungerhu.com/jxh/clc.welcome.txt >
<http://c-faq.com/ (C-faq)
<http://benpfaff.org/writings/clc/off-topic.html (topicality)
<http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf(C99)
<http://cbfalconer.home .att.net/download/n869_txt.bz2 (pre-C99)
<http://www.dinkumware. com/c99.aspx (C-library}
<http://gcc.gnu.org/onlinedocs/ (GNU docs)
<http://clc-wiki.net/wiki/C_community:com p.lang.c:Introd uction>

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home .att.net>
Try the download section.
Oct 13 '08 #6
On 13 Oct 2008 at 0:24, CBFalconer wrote:
jacob navia wrote:
>Antoninus Twink wrote:
>>Keith Thompson wrote:
Keld Jørn Simonsen <ke**@dkuug.dkw rites:
The Post Santa Clara mailing is now available from the WG14
web site at http://www.open-std.org/jtc1/sc22/wg14

I suggest posting these announcements to comp.std.c.
(A cross-post to comp.lang.c would probably be ok.)

Really? How magnanimous!

The C standard is off topic here

Such a comment, if not surrounded by smilies, is highly harmful and
will mislead all newbies. Even with smilies, it is not good.
Who is smiling?

Oct 13 '08 #7
On Oct 12, 3:59*am, Keld Jørn Simonsen <k...@dkuug.dkw rote:
The Post Santa Clara mailing is now available from the WG14 web site
at http://www.open-std.org/jtc1/sc22/wg14
There appears to be some movement towards deprecating auto. However,
the C++ people want to specifically use auto for implicit type
declarations in the next standard:

auto p = find (specificParame ter);

the idea being that p becomes declared with the type that find
returns.

So do you guys even pay attention to each other or what?

--
Paul Hsieh
http://www.pobox.com/~qed/
http://bstring.sf.net/
Oct 14 '08 #8
Paul Hsieh said:
On Oct 12, 3:59 am, Keld Jørn Simonsen <k...@dkuug.dkw rote:
>The Post Santa Clara mailing is now available from the WG14 web site
at http://www.open-std.org/jtc1/sc22/wg14

There appears to be some movement towards deprecating auto.
Good. It's about time.
However,
the C++ people want to specifically use auto for implicit type
declarations in the next standard:

auto p = find (specificParame ter);

the idea being that p becomes declared with the type that find
returns.

So do you guys even pay attention to each other or what?
I don't follow. C and C++ are different languages. They have superficial
similarities for historical reasons, but it is already easy to write good
C that is not legal C++, and trivial to write good C++ that is not legal
C. It is even possible (and not particularly difficult) to write a program
that is legal in both languages but does completely different things
depending on which language the compiler is told it's written in. I see no
particular value in C continuing to maintain a completely useless dinosaur
just because the C++ folks have suddenly discovered brontoburgers.

--
Richard Heathfield <http://www.cpax.org.uk >
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Oct 14 '08 #9
Paul Hsieh <we******@gmail .comwrites:
On Oct 12, 3:59*am, Keld Jørn Simonsen <k...@dkuug.dkw rote:
>The Post Santa Clara mailing is now available from the WG14 web site
at http://www.open-std.org/jtc1/sc22/wg14

There appears to be some movement towards deprecating auto. However,
the C++ people want to specifically use auto for implicit type
declarations in the next standard:

auto p = find (specificParame ter);

the idea being that p becomes declared with the type that find
returns.

So do you guys even pay attention to each other or what?
Why yes, they do. If you meant to imply otherwise, you've chosen a
particularly odd example.

n1343.pdf, part of the Post Santa Clara mailing, says:

2.2.1 Deprecate "auto" (N1296) (Stoughton)

General agreement to deprecate the "auto" keyword. Should we ask
WG21 to go back to the previous use of "register" (no
address). No, this will not fly with WG 21.

This is in the "LIAISON ACTIVITIES" section.

n1296.pdf, referred to by n1434 says:

Liaison Statement from WG 21 to WG 14

At their February 2008 meeting, WG 21 decided to remove the
storage class specifier "auto" from the C++ language, as proposed
in their paper N2546. This storage class specifier was inherited
from the C language, but is rarely if ever used in C++. In
investigating this, it was also noted that very few if any uses of
"auto" could be found in C programs either.

It is the C++ intention to start using "auto" for a totally
different purpose, and to that end WG 21 would like to encourage
WG 14 to review the role of "auto" in their upcoming revision of
the C standard, and either deprecate or remove it as appropriate.

(WG 21 is the C++ committee; WG 14 is the C committee.)

So yes, they seem to pay a great deal of attention to each other.

Using auto in C for the same purpose as the new C++ will use it is an
interesting idea, but I don't think it has quite as much benefit for C
as it does for C++.

Note that deprecating "auto" means that it would remain in the next
version of the standard, but would be considered for removal in the
next one after that, so it would likely continue to be standard C for
the next 20 years or so. I'm not sure whether it would be better to
allow it to be used as an ordinary identifier or not, but there's
plenty of time to decide.

--
Keith Thompson (The_Other_Keit h) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Oct 14 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

12
3826
by: Jan Roland Eriksson | last post by:
I have worked some more on this suggested new mFAQ version trying to get all user input to blend into the text. Another review by the NG would be welcome. ===== Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: once a week Last-modified: July 22, 2004
5
3147
by: Jan Roland Eriksson | last post by:
Some more fine tuning and inclusion of last suggested text from regulars has been done to this test post #4 of the mFAQ. As usual, rip it up anywhere you feel that it's appropriate to do so. ===== Archive-name: www/stylesheets/newsgroup-faq Posting-Frequency: once a week Last-modified: 2004-07-26
27
1805
by: VK | last post by:
Following the side thread about the time precision in browser at <http://groups.google.com/group/comp.lang.javascript/browse_frm/thread/91b9f3fd90513161/1ea06131c63cfdf0?hl=en#doc_620f160f0cb57c8c> Statement: At the very least Internet Explorer doesn't go by "real" time in script methods. Instead it provides to script methods "application ticks" with predefined amount of milliseconds in them. If the requested time frame fits into an...
2
1975
by: Martin | last post by:
Hello, We are in the process of putting together an A class PHP Development team(ecommerce / billing applications) for a project in the Bay Area. Reqt. details: ReqId : Req-3616 - Senior PHP Developer Primary Skills: PHP, Linux, Apache Secondary Skills: C++, SQL
0
1864
by: Martin | last post by:
Hello, We are in the process of putting together an A class C++ Development team(ecommerce / billing applications) for a project in the Bay Area. Reqt. details: ReqId : Req-3911 - C++ Senior Developer Primary Skills: C++, SQL Secondary Skills: XML, Oracle Description: As a part of the development team for our client's
0
1641
by: Michael Hudson | last post by:
The PyPy team is sprinting at EuroPython again and we invite you to participate in our 3 day long sprint at the conference hotel - Reval Hotel Lietuva. If you plan to attend the sprint we recommend you to listen to the PyPy technical talks (`EuroPython schedule`_) during the conference since it will give you a good overview of the status of development. On the morning of the first sprint day (12th) we will also have a tutorial session...
0
944
by: =?iso-8859-1?q?Keld_J=F8rn?= Simonsen | last post by:
The 2008-06 post Sophia mailing, the core WG issues list revision 56 and the library WG issues list revision 57 are now available from the WG21 site at http://www.open-std.org/jtc1/sc22/wg21/ Best regards Keld Simonsen
14
1368
by: =?iso-8859-1?q?Keld_J=F8rn?= Simonsen | last post by:
The WG14 Pre Santa Barbara mailing is now available from the WG14 sita ay http://www.open-std.org/jtc1/sc22/wg14 There is also a new draft for the C standard N1336 and a new draft for the security enhanced functions N1337. est regards Keld Simonsen
0
1167
by: =?iso-8859-1?q?Keld_J=F8rn?= Simonsen | last post by:
The 2008-10 Post San Francisco mailing is now available from the WG21 web site at http://www.open-std.org/jtc1/sc22/wg21/ Also the core WG issues list rev 59 and the library WG issuse list rev 60 are now availabe. I also did a number of updates of other pages on the WG21 site. Best regards Keld Simonsen
0
9687
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
1
10237
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9077
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6808
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5588
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4144
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3761
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.