Ignore:
Timestamp:
May 18, 2015, 11:20:23 AM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
51587aa
Parents:
a32b204
Message:

licencing: third groups of files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • translator/SynTree/AddressExpr.cc

    ra32b204 r0dd3a2f  
    1 /*
    2  * This file is part of the Cforall project
    3  *
    4  * $Id: AddressExpr.cc,v 1.6 2005/08/29 20:59:25 rcbilson Exp $
    5  *
    6  */
     1//
     2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
     3//
     4// The contents of this file are covered under the licence agreement in the
     5// file "LICENCE" distributed with Cforall.
     6//
     7// AddressExpr.cc --
     8//
     9// Author           : Richard C. Bilson
     10// Created On       : Sun May 17 23:54:44 2015
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Mon May 18 07:48:14 2015
     13// Update Count     : 5
     14//
    715
    816#include "Expression.h"
     
    1018#include "utility.h"
    1119
    12 
    13 AddressExpr::AddressExpr( Expression *arg, Expression *_aname )
    14     : Expression( _aname ), arg( arg )
    15 {
     20AddressExpr::AddressExpr( Expression *arg, Expression *_aname ) : Expression( _aname ), arg( arg ) {
    1621    for ( std::list< Type* >::const_iterator i = arg->get_results().begin(); i != arg->get_results().end(); ++i ) {
    17         get_results().push_back( new PointerType( Type::Qualifiers(), (*i)->clone() ) );
    18     }
     22                get_results().push_back( new PointerType( Type::Qualifiers(), (*i)->clone() ) );
     23    } // for
    1924}
    2025
    21 AddressExpr::AddressExpr( const AddressExpr &other )
    22     : Expression( other ), arg( maybeClone( other.arg ) )
    23 {
     26AddressExpr::AddressExpr( const AddressExpr &other ) : Expression( other ), arg( maybeClone( other.arg ) ) {
    2427}
    2528
    26 AddressExpr::~AddressExpr()
    27 {
     29AddressExpr::~AddressExpr() {
    2830    delete arg;
    2931}
    3032
    31 void
    32 AddressExpr::print( std::ostream &os, int indent ) const
    33 {
     33void AddressExpr::print( std::ostream &os, int indent ) const {
    3434    os << std::string( indent, ' ' ) << "Address of:" << std::endl;
    3535    if ( arg ) {
    36         arg->print( os, indent+2 );
    37     }
     36                arg->print( os, indent+2 );
     37    } // if
    3838}
    3939
    40 
     40// Local Variables: //
     41// tab-width: 4 //
     42// mode: c++ //
     43// compile-command: "make install" //
     44// End: //
Note: See TracChangeset for help on using the changeset viewer.