| 
            Last change
 on this file since 97453ce was             b9f8274, checked in by Andrew Beach <ajbeach@…>, 3 years ago           | 
        
        
          | 
             
Removed the validate sub-pass interface. This also showed an extra include in CandidateFinder, also removed. 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            942 bytes
           | 
        
      
      
| Rev | Line |   | 
|---|
| [0dd3a2f] | 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 | // Validate.h -- This class is intended to perform pre-processing of declarations, validating their correctness and
 | 
|---|
 | 8 | //               computing some auxilliary data that is necessary for the indexer.
 | 
|---|
 | 9 | //
 | 
|---|
 | 10 | // Author           : Richard C. Bilson
 | 
|---|
 | 11 | // Created On       : Sun May 17 21:53:34 2015
 | 
|---|
| [9939dc3] | 12 | // Last Modified By : Andrew Beach
 | 
|---|
| [b9f8274] | 13 | // Last Modified On : Tue Jul 12 15:30:00 2022
 | 
|---|
 | 14 | // Update Count     : 6
 | 
|---|
| [0dd3a2f] | 15 | //
 | 
|---|
| [51b73452] | 16 | 
 | 
|---|
| [6b0b624] | 17 | #pragma once
 | 
|---|
| [51b73452] | 18 | 
 | 
|---|
| [30f9072] | 19 | #include <list>  // for list
 | 
|---|
 | 20 | 
 | 
|---|
| [b9f8274] | 21 | class Declaration;
 | 
|---|
| [c8e4d2f8] | 22 | 
 | 
|---|
| [51b73452] | 23 | namespace SymTab {
 | 
|---|
| [82dd287] | 24 |         /// Normalizes struct and function declarations
 | 
|---|
| [a08ba92] | 25 |         void validate( std::list< Declaration * > &translationUnit, bool doDebug = false );
 | 
|---|
| [0dd3a2f] | 26 | } // namespace SymTab
 | 
|---|
| [51b73452] | 27 | 
 | 
|---|
| [0dd3a2f] | 28 | // Local Variables: //
 | 
|---|
 | 29 | // tab-width: 4 //
 | 
|---|
 | 30 | // mode: c++ //
 | 
|---|
 | 31 | // compile-command: "make install" //
 | 
|---|
 | 32 | // End: //
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.