Browse Source

!10386 Modify alarm information

From: @shenwei41
Reviewed-by: @heleiwang,@liucunwei
Signed-off-by: @liucunwei
tags/v1.1.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
bceb03a07e
2 changed files with 5 additions and 5 deletions
  1. +1
    -1
      mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/AclProcess.h
  2. +4
    -4
      mindspore/ccsrc/minddata/dataset/util/btree.h

+ 1
- 1
mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/AclProcess.h View File

@@ -1,4 +1,3 @@
#include <climits>
/*
* Copyright (c) 2020.Huawei Technologies Co., Ltd. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,6 +16,7 @@
#ifndef ACLMANAGER_H
#define ACLMANAGER_H

#include <climits>
#include <string>
#include <string.h>
#include <map>


+ 4
- 4
mindspore/ccsrc/minddata/dataset/util/btree.h View File

@@ -384,11 +384,11 @@ class BPlusTree {

~Iterator();

Iterator(const Iterator &);
explicit Iterator(const Iterator &);

Iterator &operator=(const Iterator &lhs);

Iterator(Iterator &&) noexcept;
explicit Iterator(Iterator &&) noexcept;

Iterator &operator=(Iterator &&lhs);

@@ -448,11 +448,11 @@ class BPlusTree {
ConstIterator(const LeafNode *leaf, slot_type slot, bool locked = false)
: cur_(leaf), slot_(slot), locked_(locked) {}

ConstIterator(const ConstIterator &);
explicit ConstIterator(const ConstIterator &);

ConstIterator &operator=(const ConstIterator &lhs);

ConstIterator(ConstIterator &&) noexcept;
explicit ConstIterator(ConstIterator &&) noexcept;

ConstIterator &operator=(ConstIterator &&lhs);



Loading…
Cancel
Save