Changes in src/SynTree/ObjectDecl.cc [1cbca6e:1db21619]
- File:
-
- 1 edited
-
src/SynTree/ObjectDecl.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/ObjectDecl.cc
r1cbca6e r1db21619 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Rob Schluntz12 // Last Modified On : Tue Sep 29 14:13:01201513 // Update Count : 1 811 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Mon Jul 13 18:08:27 2015 13 // Update Count : 16 14 14 // 15 15 … … 52 52 get_type()->print( os, indent ); 53 53 } else { 54 os << " untyped entity ";54 os << "untyped entity "; 55 55 } // if 56 56 57 57 if ( init ) { 58 os << " with initializer ";58 os << "with initializer "; 59 59 init->print( os, indent ); 60 60 } // if 61 61 62 62 if ( bitfieldWidth ) { 63 os << " with bitfield width ";63 os << "with bitfield width "; 64 64 bitfieldWidth->print( os ); 65 65 } // if
Note:
See TracChangeset
for help on using the changeset viewer.