summaryrefslogtreecommitdiff
path: root/deps/v8/src/profiler/unbound-queue.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/profiler/unbound-queue.h')
-rw-r--r--deps/v8/src/profiler/unbound-queue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/src/profiler/unbound-queue.h b/deps/v8/src/profiler/unbound-queue.h
index 062f1ce609..0efe95abdf 100644
--- a/deps/v8/src/profiler/unbound-queue.h
+++ b/deps/v8/src/profiler/unbound-queue.h
@@ -24,13 +24,13 @@ class UnboundQueue BASE_EMBEDDED {
inline UnboundQueue();
inline ~UnboundQueue();
- INLINE(bool Dequeue(Record* rec));
- INLINE(void Enqueue(const Record& rec));
- INLINE(bool IsEmpty() const);
- INLINE(Record* Peek() const);
+ V8_INLINE bool Dequeue(Record* rec);
+ V8_INLINE void Enqueue(const Record& rec);
+ V8_INLINE bool IsEmpty() const;
+ V8_INLINE Record* Peek() const;
private:
- INLINE(void DeleteFirst());
+ V8_INLINE void DeleteFirst();
struct Node;