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

Commit 265fc0b

Browse files
committed
chakrashim: fixing Linux build issue
* Fixing TTD lint issue as well PR-URL: #209 Reviewed-By: Hitesh Kanwathirtha <digitalinfinity@gmail.com>
1 parent 5e3480d commit 265fc0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deps/chakrashim/include/v8.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1915,7 +1915,7 @@ class V8_EXPORT Float64Array : public TypedArray {
19151915

19161916
class V8_EXPORT SharedArrayBuffer : public Object {
19171917
public:
1918-
V8_INLINE static SharedArrayBuffer* Cast(Value* obj);
1918+
static SharedArrayBuffer* Cast(Value* obj);
19191919

19201920
private:
19211921
SharedArrayBuffer();

src/node_zlib.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class ZCtx : public AsyncWrap {
211211
}
212212

213213
#if ENABLE_TTD_NODE
214-
if(s_doTTRecord || s_doTTReplay) {
214+
if (s_doTTRecord || s_doTTReplay) {
215215
Buffer::TTDAsyncModRegister(out_buf, out);
216216
}
217217
#endif

0 commit comments

Comments
 (0)