Changes in / [0eb18557:e869e434]


Ignore:
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • doc/generic_types/evaluation/Makefile

    r0eb18557 re869e434  
    66.PHONY: all clean distclean run-c run-cpp run-cfa run
    77
    8 all: c-bench cpp-bench cfa-bench
     8all: c-bench cpp-bench cfa-bench cpp-vbench
    99
    1010# rewrite object generation to auto-determine deps
  • doc/generic_types/evaluation/cpp-vbench.cpp

    r0eb18557 re869e434  
    4242        )
    4343
    44         pair max2 = { std::make_unique<boolean>(false), std::make_unique<character>('\0') };
     44        auto max2 = std::make_unique<pair>( std::make_unique<boolean>(false),
     45                std::make_unique<character>('\0') );
    4546        REPEAT_TIMED( "pop_bool_char",
    46                 max2 = std::max( max2, t2.pop()->as<pair>() );
     47                std::unique_ptr<object> x = t2.pop();
     48                if ( x->as<pair>() > *max2 ) { max2.reset( static_cast<pair*>(x.release()) ); }
    4749        )
    4850}
  • src/libcfa/Makefile.am

    r0eb18557 re869e434  
    4141CC = ${abs_top_srcdir}/src/driver/cfa
    4242
    43 headers = limits stdlib math iostream fstream iterator rational assert containers/vector
     43headers = limits stdlib math iostream fstream iterator rational assert containers/pair containers/vector
    4444
    4545# not all platforms support concurrency, add option do disable it
Note: See TracChangeset for help on using the changeset viewer.