Changeset 3648d98


Ignore:
Timestamp:
May 15, 2019, 4:10:17 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
89c2f7c9
Parents:
69bafd2
Message:

Clean up warnings/errors from ast::Type merge

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Node.hpp

    r69bafd2 r3648d98  
    135135        const node_t & operator* () const { return *node; }
    136136        explicit operator bool() const { return node; }
    137         operator const node_t * const() const { return node; }
     137        operator const node_t * () const { return node; }
    138138
    139139        template<typename o_node_t>
  • src/AST/Type.hpp

    r69bafd2 r3648d98  
    2323
    2424#include "CVQualifiers.hpp"
     25#include "Decl.hpp"
    2526#include "Fwd.hpp"
    2627#include "Node.hpp"          // for Node, ptr
     
    141142
    142143        /// Check if this type represents an integer type
    143         bool isInteger() const { return kind <= MAX_INTEGER_TYPE; }
     144        bool isInteger() const { return (unsigned)kind <= (unsigned)MAX_INTEGER_TYPE; }
    144145
    145146        const Type * accept( Visitor & v ) const override { return v.visit( this ); }
  • src/InitTweak/InitTweak.cc

    r69bafd2 r3648d98  
    515515        }
    516516        const ast::Type* getPointerBase( const ast::Type* t ) {
    517                 if ( const ast::PointerType* p = dynamic_cast< const ast::PointerType* >( t ) ) {
    518                         return p->base;
    519                 } else if ( const ast::ArrayType* a = dynamic_cast< const ast::ArrayType* >( t ) ) {
    520                         return a->base;
    521                 } else if ( const ast::ReferenceType* r = dynamic_cast< const ast::ReferenceType* >( t ) ) {
    522                         return r->base;
    523                 } else return nullptr;
     517                assert(!"needs to build Type.cpp before inclusion");
     518                // if ( const ast::PointerType* p = dynamic_cast< const ast::PointerType* >( t ) ) {
     519                //      return p->base;
     520                // } else if ( const ast::ArrayType* a = dynamic_cast< const ast::ArrayType* >( t ) ) {
     521                //      return a->base;
     522                // } else if ( const ast::ReferenceType* r = dynamic_cast< const ast::ReferenceType* >( t ) ) {
     523                //      return r->base;
     524                // } else return nullptr;
    524525        }
    525526
Note: See TracChangeset for help on using the changeset viewer.