我是靠谱客的博主 干净黑裤,最近开发中收集的这篇文章主要介绍Ubuntu MRPT enable_if_t error,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

参考官网安装教程,(sudo 安装,教程在这里)。安装好MRPT后,写了一个测试程序,报错如下

/usr/include/mrpt/base/include/mrpt/utils/CConfigFileBase.h:79: error: ‘enable_if_t’ in namespace ‘std’ does not name a template type
typename = std::enable_if_t


发现 enable_if_t 是cpp14里的功能,cpp11只有enable_if。
这里写图片描述
所以改CMakeLists里面cpp版本选择

set( CMAKE_CXX_FLAGS “-std=c++11”)
改为
set( CMAKE_CXX_FLAGS “-std=c++14”)

编译成功。

CMakeLists.txt

cmake_minimum_required( VERSION 2.8 )
project ( MRPT_example )
set( CMAKE_CXX_FLAGS "-std=c++14")
FIND_PACKAGE( MRPT REQUIRED base gui) # WARNING: Add all the MRPT libs used by your program: "gui", "obs", "slam",etc.
ADD_EXECUTABLE( example1 test.cpp )
TARGET_LINK_LIBRARIES(example1 ${MRPT_LIBS})

test.cpp

/* **************************************
* mrpt使用
*
* ***************************************/
#include <iostream>
//#include <type_traits>
#include <mrpt/gui/CDisplayWindowPlots.h>
using namespace std;
int main(int argc, char** argv)
{
mrpt::gui::CDisplayWindowPlots
win("path2D",400,400);
win.hold_on();
win.setPos(1300,0);
std::vector<double> x,y;
for (int i = 0; i < 1000; i++)
{
double tempx = 10.0*i-500;
double tempy = 9*i-500;
x.push_back(tempx);
y.push_back(tempy);
}
win.plot(x,y,"r.3");
win.axis_fit();
win.axis_equal(true);
while(1);
return 0;
}

效果图
效果图

最后

以上就是干净黑裤为你收集整理的Ubuntu MRPT enable_if_t error的全部内容,希望文章能够帮你解决Ubuntu MRPT enable_if_t error所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(32)

评论列表共有 0 条评论

立即
投稿
返回
顶部