source: src/ResolvExpr/ResolveTypeof.h@ 8d182b1

Last change on this file since 8d182b1 was 0bd3faf, checked in by Andrew Beach <ajbeach@…>, 23 months ago

Removed forward declarations missed in the BaseSyntaxNode removal. Removed code and modified names to support two versions of the ast.

  • Property mode set to 100644
File size: 1016 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// ResolveTypeof.h --
8//
9// Author : Richard C. Bilson
10// Created On : Sun May 17 12:14:53 2015
11// Last Modified By : Andrew Beach
12// Last Modified On : Wed Mar 16 11:33:00 2022
13// Update Count : 4
14//
15
16#pragma once
17
18namespace ast {
19 class Type;
20 class ObjectDecl;
21}
22
23namespace ResolvExpr {
24 struct ResolveContext;
25
26 const ast::Type * resolveTypeof( const ast::Type *, const ResolveContext & );
27 const ast::Type * fixArrayType( const ast::Type *, const ResolveContext & );
28 const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ResolveContext & );
29 const ast::ObjectDecl * fixObjectInit( const ast::ObjectDecl * decl , const ResolveContext & );
30} // namespace ResolvExpr
31
32// Local Variables: //
33// tab-width: 4 //
34// mode: c++ //
35// compile-command: "make install" //
36// End: //
Note: See TracBrowser for help on using the repository browser.