草庐IT

assert_not

全部标签

c++ - CMake 错误 : common is required but boost was not found

我正在尝试使用cmake_3.5.0编译opencv_2.4.9以在Qt_5.3.2MinGW中运行一个项目,但它一直显示此错误:Commonneededbutcan'tfindboost我选择“MinGWMakefiles”作为生成器并在配置窗口中“指定native编译器”。我定义了BOOST_ROOT环境变量,这是我的CmakeLists.txt:cmake_minimum_required(VERSION2.8FATAL_ERROR)SET(sampleNameMyApp)set(Boost_USE_STATIC_LIBSON)set(Boost_USE_STATICON)set

c++ - constexpr if 和 static_assert

P0292R1constexprif一直included,在C++17的轨道上。它似乎很有用(并且可以替代SFINAE的使用),但是关于static_assert的评论是错误的,不需要诊断在false分支中吓到我了:Disarmingstatic_assertdeclarationsinthenon-takenbranchofaconstexprifisnotproposed.voidf(){ifconstexpr(false)static_assert(false);//ill-formed}templatevoidg(){ifconstexpr(false)static_asser

c++ - 我可以为 assert() 禁用 GCC 的 noreturn 属性吗

Glibc在assert.h中使用GCC的noreturn属性:externvoid__assert_fail(...)...__attribute__((__noreturn__));这会导致GCC在进入调试器之前优化所有局部变量和this指针。优化甚至发生在-Og级别,并且在-O0级别省略了许多其他有用的优化,以至于测试变得非常缓慢。理想情况下,我只想从那里删除__noreturn__属性。我不在乎我的assert()是否运行得更快,我想看看它在何处以及为何触发。是否有GCC命令行标志或任何其他机制可用于禁用__noreturn__优化,而不禁用其他优化?可运行示例代码:#incl

c++ - OpenCV - 分配运算符 "not working"?

我有一个计算卷积的函数(测试我们是否使用了正确的filter2D设置),我认为函数体并不重要,所以这里只是标题和结尾:templatecv::Matconv(constcv::Mat&input,constcv::Mat&kernel){cv::Matoutput(input);//orshouldIratheruseoutput(input.rows,input.cols,input.depth())?...returnoutput;}cv::Matresult=conv(input,kernel);此时,我在result中得到了完全无用的结果(这些甚至不是随机数据,它们有一些奇怪的

c++ - 使用 stxxl 队列时为 `pointer being freed was not allocated`

我的代码似乎可以工作(由于上述错误,我还没有在大型数据集上尝试过)。代码:#include#include#includeintmain(){//queueq;//thisworksstxxl::queueq;//doesnotworkfor(inti=0;i我的简单.stxxl就是:disk=./testfile,0,syscall但我的错误是:stackexchangeexample(3884)malloc:***errorforobject0x101c04000:pointerbeingfreedwasnotallocated***setabreakpointinmalloc_e

c++ - Boost 序列化给出未定义的类型 'boost::STATIC_ASSERTION_FAILURE'

我正在学习使用boost将我的一些C++类序列化。我在接口(interface)中有一个结构。我使用boostserilaize函数像这样序列化这个结构。接口(interface).hstructX{constLongrate;}templatevoidserialize(Archive&ar,uint32version){ar&this->rate;}BOOST_CLASS_EXPORT(X);现在这个头文件将被我的主类使用。比方说main.cpp,这个主类的标题有主要.h#include"Interface.h"classMain{//somestufftemplatevoidse

c++ - CMake "clang++ is not able compile a simple test program"(软呢帽 20)

所以我尝试安装clang+cmake来编译一个简单的C++程序,但出现以下错误:--TheCcompileridentificationisGNU4.8.3--TheCXXcompileridentificationisClang3.5.0--CheckforworkingCcompiler:/usr/bin/cc--CheckforworkingCcompiler:/usr/bin/cc--works--DetectingCcompilerABIinfo--DetectingCcompilerABIinfo-done--CheckforworkingCXXcompiler:/usr/

c++ - OS X Yosemite 升级 : Game not recognized by Game Center

昨天我将OSX升级到Yosemite,从那时起我的游戏就无法被GameCenter识别。GKErrorDomain:代码15和文本:“无法完成请求的操作,因为GameCenter无法识别此应用程序。”我在GameCenter应用程序中检查了Developer->UseSandboxServer但没有结果。另外,再次尝试清理、构建。GCApp好像没有进入沙盒模式?正如我所说,在我升级到Yosemite之前游戏运行良好。感谢任何帮助。 最佳答案 我认为问题可能在于OSXYosemite具有游戏无法支持的新功能,因为该游戏是为较旧版本的操

c++ - fatal error : 'common.h' file not found under mac osx 10. 10.5

我按照操作系统:三个简单的部分这本书,introductionchapter中的代码,#include#include#include#include#include"common.h"intmain(intargc,char*argv[]){if(argc!=2){fprintf(stderr,"usage:cpu\n");exit(1);}char*str=argv[1];while(1){Spin(1);printf("%s\n",str);}return0;}当我尝试gcc-ocpucpu.c-Wall时,错误出来了:fatalerror:'common.h'filenotfo

c++ - 错误 "requested alignment is not an integer constant"

我在解决GCC问题时遇到问题。我在GCC4.8下体验过它,但不是5.1。看起来它被报道了here和/或here.问题如下:templatestructS{staticconstintALIGN=16;__attribute__((aligned(ALIGN)))intx;};intmain(intargc,char*argv[]){Ss1;Ss2;return0;}和:$g++test.cxx-otest.exetest.cxx:9:41:error:requestedalignmentisnotanintegerconstant__attribute__((aligned(ALIGN