This is the mail archive of the ecos-patches@sourceware.org mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Fix bug 91418: escaping of infra.cdl brackets


Index: ChangeLog
===================================================================
RCS file: /cvs/ecos/ecos/packages/infra/current/ChangeLog,v
retrieving revision 1.62
diff -u -5 -p -r1.62 ChangeLog
--- ChangeLog	11 Nov 2008 04:31:44 -0000	1.62
+++ ChangeLog	6 Jan 2009 16:28:59 -0000
@@ -7,10 +7,15 @@
 2008-07-10  Grant Edwards <grant.b.edwards@gmail.com>
 
         * src/diag.cxx: allow ASCII escape character in printf
         format strings.
 
+2008-01-10  Jonathan Larmour  <jifl@eCosCentric.com>
+
+	* cdl/infra.cdl (CYGFUN_INFRA_EMPTY_DELETE_FUNCTIONS): Escape square
+	brackets in description.	
+
 2007-12-28  Oyvind Harboe <oyvind.harboe@zylin.com>
 	
 	* src/memcpy.cxx: added assert when memory areas for memcpy()
 	overlaps => result is undefined. It is important to catch *all*
 	cases of this if adding an optimisation for unaligned copy.
Index: cdl/infra.cdl
===================================================================
RCS file: /cvs/ecos/ecos/packages/infra/current/cdl/infra.cdl,v
retrieving revision 1.16
diff -u -5 -p -r1.16 infra.cdl
--- cdl/infra.cdl	11 Nov 2008 04:31:44 -0000	1.16
+++ cdl/infra.cdl	6 Jan 2009 16:29:00 -0000
@@ -167,11 +167,11 @@ cdl_package CYGPKG_INFRA {
             to free().  So the dynamic memory allocation code is linked
             in regardless of whether it gets explicitly called. This
             increases code and data size needlessly.
             
             To defeat this undesirable behaviour, we define empty versions
-            of delete and delete[].  But doing this prevents proper use
+            of delete and delete\[\].  But doing this prevents proper use
             of dynamic memory in C++ programs via C++'s new and delete
             operators.
             
             Therefore, this option is provided
             for explicitly disabling the provision of these empty functions,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]