You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by as...@apache.org on 2014/07/31 18:49:41 UTC

svn commit: r1614936 - /qpid/proton/trunk/proton-c/include/proton/event.h

Author: astitcher
Date: Thu Jul 31 16:49:40 2014
New Revision: 1614936

URL: http://svn.apache.org/r1614936
Log:
NO-JIRA: C++03 (& C89) do not allow trailing comma in an enumeration

Modified:
    qpid/proton/trunk/proton-c/include/proton/event.h

Modified: qpid/proton/trunk/proton-c/include/proton/event.h
URL: http://svn.apache.org/viewvc/qpid/proton/trunk/proton-c/include/proton/event.h?rev=1614936&r1=1614935&r2=1614936&view=diff
==============================================================================
--- qpid/proton/trunk/proton-c/include/proton/event.h (original)
+++ qpid/proton/trunk/proton-c/include/proton/event.h Thu Jul 31 16:49:40 2014
@@ -227,7 +227,7 @@ typedef enum {
    * The transport has new data to read and/or write. Events of this
    * type point to the relevant transport.
    */
-  PN_TRANSPORT = PN_EVENT_CATEGORY_TRANSPORT + 1,
+  PN_TRANSPORT = PN_EVENT_CATEGORY_TRANSPORT + 1
 
 } pn_event_type_t;
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org