#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <dirent.h>
#include <cstring>
#include <sys/types.h>
#include <string>
struct fileInfo {
time_t st_mtime;
std::string path;
};
Во время компиляции:
g++ -std=c++1y -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"main.d" -MT"main.d" -o "main.o" "../main.cpp"
In file included from /usr/include/i386-linux-gnu/sys/stat.h:105:0,
from ../main.cpp:5:
../main.cpp:14:10: error: expected ‘;’ at end of member declaration
time_t st_mtime;
^
../main.cpp:14:10: error: expected unqualified-id before ‘.’ token
time_t st_mtime;
^
make: *** [main.o] Ошибка 1
15:05:18 Build Finished (took 259ms)