You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2012/05/12 22:14:29 UTC

svn commit: r1337632 - /subversion/trunk/subversion/libsvn_ra_serf/options.c

Author: gstein
Date: Sat May 12 20:14:28 2012
New Revision: 1337632

URL: http://svn.apache.org/viewvc?rev=1337632&view=rev
Log:
Remove unused typedef.

* subversion/libsvn_ra_serf/options.c:
  (options_state_e): typedef removed. enum retained.

Modified:
    subversion/trunk/subversion/libsvn_ra_serf/options.c

Modified: subversion/trunk/subversion/libsvn_ra_serf/options.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/options.c?rev=1337632&r1=1337631&r2=1337632&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_ra_serf/options.c (original)
+++ subversion/trunk/subversion/libsvn_ra_serf/options.c Sat May 12 20:14:28 2012
@@ -48,12 +48,12 @@
 /*
  * This enum represents the current state of our XML parsing for an OPTIONS.
  */
-typedef enum options_state_e {
+enum options_state_e {
   INITIAL = 0,
   OPTIONS,
   ACTIVITY_COLLECTION,
   HREF
-} options_state_e;
+};
 
 typedef struct options_context_t {
   /* pool to allocate memory from */