Changes in src/Concurrency/Keywords.cc [312029a:3b0c8cb]
- File:
-
- 1 edited
-
src/Concurrency/Keywords.cc (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Keywords.cc
r312029a r3b0c8cb 11 11 // Last Modified By : 12 12 // Last Modified On : 13 // Update Count : 913 // Update Count : 5 14 14 // 15 15 … … 53 53 public: 54 54 55 ConcurrentSueKeyword( std::string&& type_name, std::string&& field_name, std::string&& getter_name, std::string&& context_error, bool needs_main, AggregateDecl::Aggregatecast_target ) :55 ConcurrentSueKeyword( std::string&& type_name, std::string&& field_name, std::string&& getter_name, std::string&& context_error, bool needs_main, KeywordCastExpr::Target cast_target ) : 56 56 type_name( type_name ), field_name( field_name ), getter_name( getter_name ), context_error( context_error ), needs_main( needs_main ), cast_target( cast_target ) {} 57 57 … … 76 76 const std::string context_error; 77 77 bool needs_main; 78 AggregateDecl::Aggregatecast_target;78 KeywordCastExpr::Target cast_target; 79 79 80 80 StructDecl * type_decl = nullptr; … … 101 101 "thread keyword requires threads to be in scope, add #include <thread.hfa>\n", 102 102 true, 103 AggregateDecl::Thread103 KeywordCastExpr::Thread 104 104 ) 105 105 {} … … 133 133 "coroutine keyword requires coroutines to be in scope, add #include <coroutine.hfa>\n", 134 134 true, 135 AggregateDecl::Coroutine135 KeywordCastExpr::Coroutine 136 136 ) 137 137 {} … … 165 165 "monitor keyword requires monitors to be in scope, add #include <monitor.hfa>\n", 166 166 false, 167 AggregateDecl::Monitor167 KeywordCastExpr::Monitor 168 168 ) 169 169 {}
Note:
See TracChangeset
for help on using the changeset viewer.