Browse Source

Fix code warning

feature/build-system-rewrite
l00591931 4 years ago
parent
commit
7bc6388d63
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/ccsrc/pipeline/jit/static_analysis/evaluator.h

+ 1
- 1
mindspore/ccsrc/pipeline/jit/static_analysis/evaluator.h View File

@@ -95,7 +95,7 @@ class Evaluator : public Base {
EvaluatorCacheMgrPtr evaluator_cache_mgr() const { return evaluator_cache_mgr_; }
EvaluatorAttrCachePtr attr_cache() const { return attr_cache_; }

const std::recursive_timed_mutex &eval_lock() { return eval_lock_; }
const std::recursive_timed_mutex &eval_lock() const { return eval_lock_; }

protected:
std::string identifier_;


Loading…
Cancel
Save