Changes in / [52fad0c:1d402be]


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/Makefile.am

    r52fad0c r1d402be  
    5959        containers/array.hfa \
    6060        concurrency/iofwd.hfa \
     61        concurrency/mutex_stmt.hfa \
    6162        containers/list.hfa \
    6263        containers/queueLockFree.hfa \
  • src/Concurrency/Keywords.cc

    r52fad0c r1d402be  
    669669                lock_fn_type->get_parameters().push_back( this_decl->clone() );
    670670                unlock_fn_type->get_parameters().push_back( this_decl->clone() );
     671                fixupGenerics(lock_fn_type, decl);
     672                fixupGenerics(unlock_fn_type, decl);
    671673
    672674                delete this_decl;
     
    689691                        Type::Inline
    690692                );
    691                 fixupGenerics(lock_fn_type, decl);
    692693
    693694                UntypedExpr * get_monitor_lock =  new UntypedExpr (
     
    725726                        Type::Inline
    726727                );
    727                 fixupGenerics(unlock_fn_type, decl);
    728728
    729729                CompoundStmt * unlock_statement = new CompoundStmt();
Note: See TracChangeset for help on using the changeset viewer.