Last change
on this file since 4d5c5b6a was 299bd989, checked in by Andrew Beach <ajbeach@…>, 8 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
|
Rev | Line | |
---|
[a5f0529] | 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 | //
|
---|
[299bd989] | 7 | // ExpandCasts.hpp -- Expand virtual casts into lower level code.
|
---|
[a5f0529] | 8 | //
|
---|
| 9 | // Author : Andrew Beach
|
---|
| 10 | // Created On : Mon Jul 24 13:54:00 2017
|
---|
| 11 | // Last Modified By : Andrew Beach
|
---|
[299bd989] | 12 | // Last Modified On : Fri Jan 10 14:34:00 2025
|
---|
| 13 | // Update Count : 2
|
---|
[a5f0529] | 14 | //
|
---|
| 15 |
|
---|
| 16 | #pragma once
|
---|
| 17 |
|
---|
[ccbc65c] | 18 | namespace ast {
|
---|
| 19 | class TranslationUnit;
|
---|
| 20 | }
|
---|
[a5f0529] | 21 |
|
---|
| 22 | namespace Virtual {
|
---|
[ccbc65c] | 23 | void expandCasts( ast::TranslationUnit & translationUnit );
|
---|
| 24 | // Breaks all virtual cast nodes up into translatable nodes.
|
---|
[a5f0529] | 25 |
|
---|
| 26 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.