Changeset babeeda for src/Common
- Timestamp:
- Mar 1, 2018, 2:48:18 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- a8a2b0a
- Parents:
- 2103a51
- Location:
- src/Common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/SemanticError.h
r2103a51 rbabeeda 37 37 38 38 constexpr const char * const WarningFormats[] = { 39 39 "self assignment of expression: %s", 40 40 }; 41 41 42 42 enum class Warning { 43 SelfAssignment, 43 44 NUMBER_OF_WARNINGS, //This MUST be the last warning 44 45 }; -
src/Common/utility.h
r2103a51 rbabeeda 162 162 } 163 163 164 #define toCString( ... ) toString( __VA_ARGS__ ).c_str() 165 164 166 // replace element of list with all elements of another list 165 167 template< typename T >
Note:
See TracChangeset
for help on using the changeset viewer.