mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Removing LLVM_DELETED_FUNCTION, as MSVC 2012 was the last reason for requiring the macro. NFC; LLVM edition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229340 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -126,7 +126,7 @@ private:
|
||||
///
|
||||
class TimeRegion {
|
||||
Timer *T;
|
||||
TimeRegion(const TimeRegion &) LLVM_DELETED_FUNCTION;
|
||||
TimeRegion(const TimeRegion &) = delete;
|
||||
public:
|
||||
explicit TimeRegion(Timer &t) : T(&t) {
|
||||
T->startTimer();
|
||||
@ -164,8 +164,8 @@ class TimerGroup {
|
||||
std::vector<std::pair<TimeRecord, std::string> > TimersToPrint;
|
||||
|
||||
TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
|
||||
TimerGroup(const TimerGroup &TG) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const TimerGroup &TG) LLVM_DELETED_FUNCTION;
|
||||
TimerGroup(const TimerGroup &TG) = delete;
|
||||
void operator=(const TimerGroup &TG) = delete;
|
||||
public:
|
||||
explicit TimerGroup(StringRef name);
|
||||
~TimerGroup();
|
||||
|
Reference in New Issue
Block a user