0
升級到XCode 4.4.1並重新啓動我的機器,重新編譯,現在得到下面的錯誤,當我嘗試編譯 - 任何建議? (它用來編譯罰款) (運行在Lion上10.7.4,XCode的版本4.4.1)XCode升級到4.4.1,現在我收到編譯錯誤的錯誤<vector>
#ifndef MYFILE_H
#define MYFILE_H
#include <vector> <-- this line
#include <typeinfo>
#include <string>
#include "assert.h"
using namespace std;
錯誤消息
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/usr/include/c++/4.2.1/vector:69:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.1.sdk/usr/include/c++/4.2.1/bits/stl_vector.h:69:1: error: expected member name or ';' after declaration specifiers
_GLIBCXX_BEGIN_NESTED_NAMESPACE(std, _GLIBCXX_STD)
您的文件是.h文件? Xcode可能會嘗試將它編譯爲C而不是C++ – Geoffroy
我不這麼認爲 - 它包含在一個.cpp文件中 – daven11
您確定它是唯一的包含/導入嗎?這是我目前看到的唯一原因:/ – Geoffroy