Changeset 8d7bef2 for src/Common/GC.h


Ignore:
Timestamp:
Mar 20, 2018, 5:12:25 PM (6 years ago)
Author:
Aaron Moss <a3moss@…>
Branches:
new-env, with_gc
Children:
7e4b44db
Parents:
68f9c43
Message:

First compiling build of CFA-CC with GC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Common/GC.h

    r68f9c43 r8d7bef2  
    6666inline const GC& operator<< (const GC& gc, const T& x) { return gc; }
    6767
    68 inline void traceAll(const GC& gc) {}
     68inline void traceAll(const GC&) {}
    6969
    7070/// Marks all arguments as live in current generation
     
    9494class GC_Traceable {
    9595        friend class GC;
    96         friend class GcTracer;
     96protected:
     97        mutable bool mark;
    9798
    98         mutable bool mark;
    99 protected:
    10099        /// override to trace any child objects
    101         virtual void trace(const GC& gc) const {}
     100        virtual void trace(const GC&) const {}
    102101};
    103102
Note: See TracChangeset for help on using the changeset viewer.