Ignore:
Timestamp:
Apr 17, 2017, 3:47:07 PM (7 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
4ae83a4b
Parents:
33e22da
Message:

Final version of the benchmark code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/generic_types/evaluation/cpp-print.hpp

    r33e22da rc87cd93  
    22#include <iomanip>
    33#include <iostream>
    4 #include <utility>
     4#include "cpp-pair.hpp"
    55
    66template<typename T> void print(std::ostream& out, const T& x) { out << x; }
     
    1414
    1515template<typename R, typename S>
    16 std::ostream& operator<< (std::ostream& out, const std::pair<R, S>& x) {
     16std::ostream& operator<< (std::ostream& out, const pair<R, S>& x) {
    1717        out << "[";
    1818        print(out, x.first);
Note: See TracChangeset for help on using the changeset viewer.