Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ros
- mysql
- while
- 오늘도 우라라
- 리눅스
- 우분투
- 오늘도 우라라 펫
- C언어
- C++
- mariaDB
- 환경설정
- 데이터 베이스
- install opencv-4.4.0 on ubuntu 22.04
- publish
- 오늘도 우라라 공략
- Linux
- 기초
- MSG
- topic
- 등차수열
- Subscribe
- 오늘도 우라라 펫 공략
- 그랑사가
- 마리아 DB
- 반복문
- JungOl
- LeetCode
- ubuntu
- 프로그래밍
- 토픽
Archives
- Today
- Total
하루의 쉼터
[Error] error: no matching function for call to ‘std::basic_ifstream<char>::open(std::__cxx11::string&)’ 본문
프로그래밍/C++
[Error] error: no matching function for call to ‘std::basic_ifstream<char>::open(std::__cxx11::string&)’
Changun An 2022. 1. 19. 15:04반응형
error: no matching function for call to ‘std::basic_ifstream<char>::open(std::__cxx11::string&)’
ifstream file.open(file_name);
c++11 컴파일 버전 문제로 file_name.c_str()로 사용하면 문제 일시적으로 해결 가능하며,
-std=c++11 를 cmake에 옵션으로 주어 해결 가능
ros cmakelist 참고
add_compile_options(-std=c++11)
반응형
'프로그래밍 > C++' 카테고리의 다른 글
[BasicGrammar] Inline Function (0) | 2023.04.18 |
---|---|
[BasicGrammar] FunctionPointer(함수포인터) - with. c++ (0) | 2023.04.16 |
[Error] terminate called after throwing an instance of 'std::logic_error' (0) | 2021.08.10 |
[LinkError] gcc 이용하여 pthread 컴파일 (0) | 2021.05.14 |
[make] make: nothing to be done for 'all' 오류 (0) | 2020.09.09 |
Comments