Changes in / [52fad0c:1d402be]
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r52fad0c r1d402be 59 59 containers/array.hfa \ 60 60 concurrency/iofwd.hfa \ 61 concurrency/mutex_stmt.hfa \ 61 62 containers/list.hfa \ 62 63 containers/queueLockFree.hfa \ -
src/Concurrency/Keywords.cc
r52fad0c r1d402be 669 669 lock_fn_type->get_parameters().push_back( this_decl->clone() ); 670 670 unlock_fn_type->get_parameters().push_back( this_decl->clone() ); 671 fixupGenerics(lock_fn_type, decl); 672 fixupGenerics(unlock_fn_type, decl); 671 673 672 674 delete this_decl; … … 689 691 Type::Inline 690 692 ); 691 fixupGenerics(lock_fn_type, decl);692 693 693 694 UntypedExpr * get_monitor_lock = new UntypedExpr ( … … 725 726 Type::Inline 726 727 ); 727 fixupGenerics(unlock_fn_type, decl);728 728 729 729 CompoundStmt * unlock_statement = new CompoundStmt();
Note:
See TracChangeset
for help on using the changeset viewer.