Changes in src/Concurrency/Keywords.cc [73abe95:88d955f]
- File:
-
- 1 edited
-
src/Concurrency/Keywords.cc (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Keywords.cc
r73abe95 r88d955f 97 97 "__thrd", 98 98 "get_thread", 99 "thread keyword requires threads to be in scope, add #include <thread .hfa>",99 "thread keyword requires threads to be in scope, add #include <thread>", 100 100 true, 101 101 KeywordCastExpr::Thread … … 129 129 "__cor", 130 130 "get_coroutine", 131 "coroutine keyword requires coroutines to be in scope, add #include <coroutine .hfa>",131 "coroutine keyword requires coroutines to be in scope, add #include <coroutine>", 132 132 true, 133 133 KeywordCastExpr::Coroutine … … 161 161 "__mon", 162 162 "get_monitor", 163 "monitor keyword requires monitors to be in scope, add #include <monitor .hfa>",163 "monitor keyword requires monitors to be in scope, add #include <monitor>", 164 164 false, 165 165 KeywordCastExpr::Monitor … … 488 488 // Do we have the required headers 489 489 if( !monitor_decl || !guard_decl || !dtor_guard_decl ) 490 SemanticError( decl, "mutex keyword requires monitors to be in scope, add #include <monitor .hfa>\n" );490 SemanticError( decl, "mutex keyword requires monitors to be in scope, add #include <monitor>\n" ); 491 491 492 492 // Instrument the body … … 685 685 if( type && type->get_baseStruct()->is_thread() ) { 686 686 if( !thread_decl || !thread_ctor_seen ) { 687 SemanticError( type->get_baseStruct()->location, "thread keyword requires threads to be in scope, add #include <thread .hfa>");687 SemanticError( type->get_baseStruct()->location, "thread keyword requires threads to be in scope, add #include <thread>"); 688 688 } 689 689
Note:
See TracChangeset
for help on using the changeset viewer.