Changeset 0588d8c for src


Ignore:
Timestamp:
May 21, 2019, 11:26:40 AM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
dccc091
Parents:
292642a
Message:

Stubbed a few routines for later to help compilation

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/Common/Eval.cc

    r292642a r0588d8c  
    9090}
    9191
     92std::pair<long long int, bool> eval(const ast::Expr * expr) {
     93        #warning not implemented
     94        return { 0, false };
     95}
     96
    9297// Local Variables: //
    9398// tab-width: 4 //
  • src/Tuples/TupleExpansion.cc

    r292642a r0588d8c  
    353353        }
    354354
     355        const ast::TypeInstType * isTtype( const ast::Type * type ) {
     356                #warning unimplemented
     357                return nullptr;
     358        }
     359
    355360        namespace {
    356361                /// determines if impurity (read: side-effects) may exist in a piece of code. Currently gives a very crude approximation, wherein any function call expression means the code may be impure
Note: See TracChangeset for help on using the changeset viewer.