Ignore:
Timestamp:
Aug 30, 2016, 4:26:01 PM (8 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, 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:
c8dfcd3
Parents:
3906301 (diff), 32a2a99 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into ctor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/NamedTypeDecl.cc

    r3906301 rfa463f1  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // NamedTypeDecl.cc -- 
     7// NamedTypeDecl.cc --
    88//
    99// Author           : Richard C. Bilson
     
    2121        : Parent( name, sc, LinkageSpec::Cforall ), base( base ) {}
    2222
    23 NamedTypeDecl::NamedTypeDecl( const TypeDecl &other )
     23NamedTypeDecl::NamedTypeDecl( const NamedTypeDecl &other )
    2424        : Parent( other ), base( maybeClone( other.base ) ) {
    2525        cloneAll( other.parameters, parameters );
     
    3535void NamedTypeDecl::print( std::ostream &os, int indent ) const {
    3636        using namespace std;
    37        
     37
    3838        if ( get_name() != "" ) {
    3939                os << get_name() << ": ";
     
    5959void NamedTypeDecl::printShort( std::ostream &os, int indent ) const {
    6060        using namespace std;
    61        
     61
    6262        if ( get_name() != "" ) {
    6363                os << get_name() << ": ";
Note: See TracChangeset for help on using the changeset viewer.