- Timestamp:
- May 30, 2024, 2:36:08 PM (8 months ago)
- Branches:
- master
- Children:
- 0f5e8cd
- Parents:
- 91b9e10
- Location:
- src/AST
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.hpp
r91b9e10 r822332e 352 352 353 353 template< typename core_t > 354 friend auto __pass::make_value_guard( core_t & core, int ) -> decltype( value_guard( core.at_cleanup ) ); 354 friend auto __pass::make_value_guard( core_t & core, int ) 355 -> decltype( __pass::value_guard( core.at_cleanup ) ); 355 356 public: 356 357 -
src/AST/Pass.proto.hpp
r91b9e10 r822332e 326 326 template< typename core_t > 327 327 static inline auto make_value_guard( core_t & core, int ) 328 -> decltype( value_guard( core.at_cleanup ) ) {328 -> decltype( __pass::value_guard( core.at_cleanup ) ) { 329 329 // Requires guaranteed copy elision: 330 330 return value_guard( core.at_cleanup ); -
src/AST/Print.cpp
r91b9e10 r822332e 103 103 } 104 104 105 static const char* Names[];106 107 105 void print( const std::vector<ast::Label> & labels ) { 108 106 if ( labels.empty() ) return;
Note: See TracChangeset
for help on using the changeset viewer.