当前位置:   article > 正文

/include/bmnn_utils.h:114:10: error: ‘unordered_map’ in namespace ‘std’ does not name a template typ_‘map’ in namespace ‘std’ does not name a template

‘map’ in namespace ‘std’ does not name a template type

在编译某程序时,报下面的错误

  1. ./include/bmnn_utils.h:114:10: error: ‘unordered_map’ in namespace ‘std’ does not name a template type
  2.      std::unordered_map<std::string, bm_tensor_t*> m_mapInputs;
  3.           ^~~~~~~~~~~~~
  4. .//include/bmnn_utils.h:115:10: error: ‘unordered_map’ in namespace ‘std’ does not name a template type
  5.      std::unordered_map<std::string, bm_tensor_t*> m_mapOutputs;

网上搜了一下给出的答案大多是说增加std=c++11标准,但是我的cmake里面已经有-std=c++11了,后来发现是没有包含头文件,增加如下代码错误消失

#include <unordered_map>

同样类似的错误

error: ‘assert’ was not declared in this scope

增加如下代码解决

#include <cassert>

下面的错误

error: ‘memset’ was not declared in this scope

增加如下代码解决

#include <cstring>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/966665
推荐阅读
相关标签
  

闽ICP备14008679号