Changeset 0bd46fd for src/Validate


Ignore:
Timestamp:
Sep 21, 2022, 10:52:51 AM (19 months ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
7f6a7c9, e01eb4a
Parents:
20737104
Message:

Fixed several warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Validate/ReplaceTypedef.cpp

    r20737104 r0bd46fd  
    193193}
    194194
    195 void ReplaceTypedefCore::previsit( ast::FunctionDecl const * decl ) {
     195void ReplaceTypedefCore::previsit( ast::FunctionDecl const * ) {
    196196        GuardScope( typedefNames );
    197197        GuardScope( typedeclNames );
     
    199199}
    200200
    201 void ReplaceTypedefCore::previsit( ast::ObjectDecl const * decl ) {
     201void ReplaceTypedefCore::previsit( ast::ObjectDecl const * ) {
    202202        GuardScope( typedefNames );
    203203        GuardScope( typedeclNames );
     
    241241}
    242242
    243 void ReplaceTypedefCore::previsit( ast::CastExpr const * expr ) {
    244         GuardScope( typedefNames );
    245         GuardScope( typedeclNames );
    246 }
    247 
    248 void ReplaceTypedefCore::previsit( ast::CompoundStmt const * expr ) {
     243void ReplaceTypedefCore::previsit( ast::CastExpr const * ) {
     244        GuardScope( typedefNames );
     245        GuardScope( typedeclNames );
     246}
     247
     248void ReplaceTypedefCore::previsit( ast::CompoundStmt const * ) {
    249249        GuardScope( typedefNames );
    250250        GuardScope( typedeclNames );
     
    273273}
    274274
    275 void ReplaceTypedefCore::previsit( ast::TraitDecl const * decl ) {
     275void ReplaceTypedefCore::previsit( ast::TraitDecl const * ) {
    276276        GuardScope( typedefNames );
    277277        GuardScope( typedeclNames );
Note: See TracChangeset for help on using the changeset viewer.