Skip to content

Commit

Permalink
- lints
Browse files Browse the repository at this point in the history
  • Loading branch information
mbs-octoml committed May 25, 2022
1 parent 6cda5c6 commit 79496b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime/contrib/json/json_runtime.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class JSONRuntimeBase : public ModuleNode {
LoadGraph(graph_json_);
}

const char* type_key() const override { return "json"; } // May be overridden
const char* type_key() const override { return "json"; } // May be overridden

/*! \brief Initialize a specific json runtime. */
virtual void Init(const Array<NDArray>& consts) = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/support/ffi_testing.cc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ TVM_REGISTER_GLOBAL("testing.object_use_count").set_body([](TVMArgs args, TVMRet

class FrontendTestModuleNode : public runtime::ModuleNode {
public:
virtual const char* type_key() const final { return "frontend_test"; }
const char* type_key() const final { return "frontend_test"; }

static constexpr const char* kAddFunctionName = "__add_function";

Expand Down

0 comments on commit 79496b5

Please sign in to comment.