Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
chakrashim: fixing Linux build issue
Browse files Browse the repository at this point in the history
* Fixing TTD lint issue as well

PR-URL: #209
Reviewed-By: Hitesh Kanwathirtha <digitalinfinity@gmail.com>
  • Loading branch information
kfarnung committed Apr 4, 2017
1 parent 5e3480d commit 265fc0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/chakrashim/include/v8.h
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,7 @@ class V8_EXPORT Float64Array : public TypedArray {

class V8_EXPORT SharedArrayBuffer : public Object {
public:
V8_INLINE static SharedArrayBuffer* Cast(Value* obj);
static SharedArrayBuffer* Cast(Value* obj);

private:
SharedArrayBuffer();
Expand Down
2 changes: 1 addition & 1 deletion src/node_zlib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class ZCtx : public AsyncWrap {
}

#if ENABLE_TTD_NODE
if(s_doTTRecord || s_doTTReplay) {
if (s_doTTRecord || s_doTTReplay) {
Buffer::TTDAsyncModRegister(out_buf, out);
}
#endif
Expand Down

0 comments on commit 265fc0b

Please sign in to comment.