vector<vector<float> > v as function argument
I'm trying to work with c++11. I'm able to compile my codes, but the inspector doesn't recognize a line like this one:
My CMakeLists.txt looks like this
cmake_minimum_required(VERSION 3.2)
project(test)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp)
add_executable(test ${SOURCE_FILES})
add_definitions(-std=c++11)
Can anyone help me?
Attachment(s):
Screenshot from 2015-06-23 13:27:58.png
请先登录再写评论。
Hi Cristiano
thanks for contacting us.
Most probably, the problem is fixed up in the upcoming release 1.1. Try to download and install CLion 1.1 EAP: https://confluence.jetbrains.com/display/CLION/Early+Access+Program#. You can see then that your case doesn't persist.
Thanks Renat Makhkamov. I downloaded and installed CLion 1.1 EAP and it works as expected. Thanks again.