source: src/Validate/ImplementEnumFunc.hpp @ c2cf2d0

Last change on this file since c2cf2d0 was 7fe4adbb, checked in by Andrew Beach <ajbeach@…>, 2 weeks ago

Added some code near the end of main to improve some internal statistics (about a tenth of all allocations seem to be missing a deallocation). Also some clean-up of passes in main.

  • Property mode set to 100644
File size: 271 bytes
Line 
1#pragma once
2
3namespace ast {
4        class TranslationUnit;
5}
6
7namespace Validate {
8
9/// Auto-Generation of enumeration functions.
10/// Happens before fixReturnStatements because it inserts "unfixed" returns.
11void implementEnumFunc( ast::TranslationUnit & translationUnit );
12
13}
Note: See TracBrowser for help on using the repository browser.