source: src/SynTree/DeclarationWithType.cc @ adb60242

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since adb60242 was ea6332d, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Big header cleaning pass - commit 3

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[0dd3a2f]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//
[f326f99]7// DeclarationWithType.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[8b7ee09]11// Last Modified By : Peter A. Buhr
[ddfd945]12// Last Modified On : Thu Mar 16 08:34:35 2017
13// Update Count     : 25
[0dd3a2f]14//
[51b7345]15
[ea6332d]16#include <list>                  // for list
17#include <string>                // for string
18
19#include "Attribute.h"           // for Attribute
20#include "Common/utility.h"      // for cloneAll, deleteAll, maybeClone
21#include "Declaration.h"         // for DeclarationWithType, Declaration
22#include "Parser/LinkageSpec.h"  // for Spec
23#include "SynTree/Expression.h"  // for ConstantExpr
24#include "Type.h"                // for Type, Type::FuncSpecifiers, Type::St...
[51b7345]25
[ddfd945]26DeclarationWithType::DeclarationWithType( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, const std::list< Attribute * > & attributes, Type::FuncSpecifiers fs )
[a7c90d4]27        : Declaration( name, scs, linkage ), asmName( nullptr ), attributes( attributes ), fs( fs ) {
[51b7345]28}
29
30DeclarationWithType::DeclarationWithType( const DeclarationWithType &other )
[a7c90d4]31                : Declaration( other ), mangleName( other.mangleName ), scopeLevel( other.scopeLevel ), fs( other.fs ) {
[f9cebb5]32        cloneAll( other.attributes, attributes );
[58dd019]33        asmName = maybeClone( other.asmName );
[51b7345]34}
35
[0dd3a2f]36DeclarationWithType::~DeclarationWithType() {
[f9cebb5]37        deleteAll( attributes );
[58dd019]38        delete asmName;
[51b7345]39}
40
[0dd3a2f]41// Local Variables: //
42// tab-width: 4 //
43// mode: c++ //
44// compile-command: "make install" //
45// End: //
Note: See TracBrowser for help on using the repository browser.