source: src/SymTab/TypeEquality.h @ f1a4ccb

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since f1a4ccb was 30f9072, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

More cleanup on the headers

  • Property mode set to 100644
File size: 698 bytes
Line 
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// TypeEquality.h --
8//
9// Author           : Rob Schluntz
10// Created On       : Tue Jul 07 16:30:07 2015
11// Last Modified By : Rob Schluntz
12// Last Modified On : Wed Jul 08 12:41:15 2015
13// Update Count     : 6
14//
15
16class Type;
17
18namespace SymTab {
19  // compare types t1 and t2 for equality
20  // if vlaErr is true, then if at least one of the types is a
21  // variable-length array type, then the result will be false
22  bool typeEquals( Type * t1, Type * t2, bool vlaErr = false );
23} // namespace SymTab
Note: See TracBrowser for help on using the repository browser.