source: src/SymTab/TypeEquality.h @ 30f9072

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 30f9072 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
RevLine 
[cc79d97]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//
[30f9072]7// TypeEquality.h --
[cc79d97]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
[30f9072]16class Type;
17
[cc79d97]18namespace SymTab {
19  // compare types t1 and t2 for equality
[30f9072]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
[cc79d97]22  bool typeEquals( Type * t1, Type * t2, bool vlaErr = false );
23} // namespace SymTab
Note: See TracBrowser for help on using the repository browser.