Changeset de8a0a4b for src/CodeGen
- Timestamp:
- Jan 26, 2025, 6:37:05 PM (12 months ago)
- Branches:
- master
- Children:
- a950021
- Parents:
- 0f070a4 (diff), 11f92fac (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/CodeGen/CodeGenerator.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cpp
r0f070a4 rde8a0a4b 251 251 252 252 if ( decl->init ) { 253 output << " = "; 253 bool isGenericInit = options.genC || decl->init->maybeConstructed; 254 output << ( (isGenericInit) ? " = " : " @= " ); 254 255 decl->init->accept( *visitor ); 255 256 }
Note:
See TracChangeset
for help on using the changeset viewer.