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

Commit 3d9136d

Browse files
committed
chakrashim: missing return for stubbed method
`TracingController::CurrentTimestampMicroseconds` is declared to return an `int64_t`, but currently returns nothing. PR-URL: #468 Reviewed-By: Jimmy Thomson <jithomso@microsoft.com> Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
1 parent 3aff817 commit 3d9136d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

deps/chakrashim/src/v8v8.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ namespace tracing {
254254

255255
int64_t TracingController::CurrentTimestampMicroseconds() {
256256
jsrt::Unimplemented("TracingController");
257+
return 0;
257258
}
258259

259260
void TraceConfig::AddIncludedCategory(char const*) {

0 commit comments

Comments
 (0)