blob: ece3066b65b37783f31a3228e84f9a64e37a3df1 [file] [log] [blame]
//===--------- MutatorThread.h - Thread for GC ----------------------------===//
//
// The VMKit project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MVM_MUTATOR_THREAD_H
#define MVM_MUTATOR_THREAD_H
#include "mvm/Threads/Thread.h"
namespace mvm {
class MutatorThread : public mvm::Thread {
};
}
#endif