// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // VarArgsType.cc -- // // Author : Aaron B. Moss // Created On : Thu Feb 25 16:34:00 2016 // Last Modified By : Peter A. Buhr // Last Modified On : Wed Mar 2 17:10:40 2016 // Update Count : 2 // #include "Type.h" VarArgsType::VarArgsType() : Type( Type::Qualifiers() ) {} VarArgsType::VarArgsType( Type::Qualifiers tq ) : Type( tq ) {} void VarArgsType::print( std::ostream &os, int indent ) const { Type::print( os, indent ); os << "builtin var args pack"; } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //