特定の時間形式を指定されたchar *に設定することになっているこの関数があります:
static void timeStamp(char* time)
{
time(&strTime);<---ERROR
curTime = std::localtime(&strTime);
strftime(time, 8, "%H:%M::", curTime);
}
strTime と curTime は次のように宣言されました。
tm* curTime;
time_t strTime;
しかし、何らかの理由で私は得る:
called object type 'char*' is not a function or function pointer
マークされた場所に。
理由はありますか?
ちなみにxCodeを使っています。