web-dev-qa-db-fra.com

erreur: "unique_ptr" n'est pas membre de "std"

Je suppose que c'est assez explicite - je n'arrive pas à utiliser les fonctionnalités C++ 11, même si je pense que tout est correctement configuré - ce qui signifie probablement que je ne le fais pas.

Voici mon code:

#include <cstdlib>
#include <iostream>

class Object {
    private:
        int value;

    public:
        Object(int val) {
            value = val;
        }

        int get_val() {
            return value;
        }

        void set_val(int val) {
            value = val;
        }
};

int main() {

    Object *obj = new Object(3);
    std::unique_ptr<Object> smart_obj(new Object(5));
    std::cout << obj->get_val() << std::endl;
    return 0;
}

Voici ma version de g ++:

ubuntu@ubuntu:~/Desktop$ g++ --version
g++ (Ubuntu/Linaro 4.7.3-2ubuntu1~12.04) 4.7.3
Copyright (C) 2012 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

Voici comment je compile le code:

ubuntu@ubuntu:~/Desktop$ g++ main.cpp -o run --std=c++11
main.cpp: In function ‘int main()’:
main.cpp:25:2: error: ‘unique_ptr’ is not a member of ‘std’
main.cpp:25:24: error: expected primary-expression before ‘>’ token
main.cpp:25:49: error: ‘smart_obj’ was not declared in this scope

Notez que j'ai essayé les deux -std=c++11 et -std=c++0x en vain.

J'utilise Ubuntu 12.04 LTS à partir d'un lecteur flash sur une machine Intel x64.

48
stellarossa

Vous devez inclure l'en-tête où unique_ptr et shared_ptr sont définis

#include <memory>

Comme vous saviez déjà que vous devez compiler avec c++11 drapeau

g++ main.cpp -o run -std=c++11
//                  ^
85
billz