"nullptr" was not declared in scope
-
Hi
I am a beginner and currently I am working on a program.
I have a main class called "FenPrincipale" of daughter classes "FenCene" and "FenCenep".My IDE sends me the following error at fencen.h and fencenep.h
"nullptr was not declared in the scope"
"identify 'nullptr' is a keyword in C ++ [-wc ++ 0x-compat]The notification is the same in the headers of the two classes.
Here is the code of fencene.h
#ifndef FENCENE_H #define FENCENE_H #include <QObject> #include <QWidget> namespace Ui { class FenCene; } class FenCene : public QWidget { Q_OBJECT public: explicit FenCene(QWidget *parent = nullptr); ~FenCene(); private: Ui::FenCene *ui; }; #endif // FENCENE_H
Here is the code of fencenep.h
#ifndef FENCENEP_H #define FENCENEP_H #include <QWidget> namespace Ui { class FenCenep; } class FenCenep : public QWidget { Q_OBJECT public: explicit FenCenep(QWidget *parent = nullptr); ~FenCenep(); private: Ui::FenCenep *ui; }; #endif // FENCENEP_H
Here is the code of fenprincipale.h
#ifndef FENPRINCIPALE_H #define FENPRINCIPALE_H #include <QMainWindow> #include <QWidget> #include <QStackedWidget> #include "fencene.h" #include "fencenep.h" namespace Ui { class FenPrincipale; } class FenPrincipale : public QMainWindow { Q_OBJECT public: explicit FenPrincipale(QWidget *parent = 0); ~FenPrincipale(); private: Ui::FenPrincipale *ui; QWidget *fencen; QStackedWidget *centralfencen; public slots: void Affichefencene(); void Affichefencenep(); }; #endif // FENPRINCIPALE_H
What can I do to fix the problem?
Thank you in advance....
-
This might help:
https://stackoverflow.com/questions/16509932/using-qt-creator-c-11-nullptr-is-keywordedAre you running an old project or something new?
What version of Qt are you running? 5.12?Most new projects should have CONFIG += c++11 defined already in PRO file.
-
-
Hi,
To add to my fellows: the suggestion is to update to 5.12 not 5.1.2.