source: src/Virtual/ExpandCasts.hpp @ 7959e56

Last change on this file since 7959e56 was 299bd989, checked in by Andrew Beach <ajbeach@…>, 3 months ago

Looking over some virtual cast related code to reduce the forall list of type-ids down to a minimal form. You could repeat this with virtual tables, although that might conflict with some proposed features, using the same pattern.

  • Property mode set to 100644
File size: 658 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// ExpandCasts.hpp -- Expand virtual casts into lower level code.
8//
9// Author           : Andrew Beach
10// Created On       : Mon Jul 24 13:54:00 2017
11// Last Modified By : Andrew Beach
12// Last Modified On : Fri Jan 10 14:34:00 2025
13// Update Count     : 2
14//
15
16#pragma once
17
18namespace ast {
19        class TranslationUnit;
20}
21
22namespace Virtual {
23void expandCasts( ast::TranslationUnit & translationUnit );
24// Breaks all virtual cast nodes up into translatable nodes.
25
26}
Note: See TracBrowser for help on using the repository browser.