I am working on a project in Qt4 that's almost finished and all of a sudden it starts throwing the following error
in main.cpp. Here is what's inside main.cpp:
As far as I'm seeing, it shouldn't report that error when building.
Code:
"expected '}' at end of input"
Code:
#include <QtGui/QApplication>
#include "mainform.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainForm w;
w.show();
return a.exec();
}
As far as I'm seeing, it shouldn't report that error when building.