Я использую Code :: Blocks 17.12 с компилятором MinGW GCC C ++ по умолчанию (с -std = c ++ 11) в Windows 10. Я создал несколько консольных проектов C ++ без проблем. Однако, когда я включаю класс priority_queue STL, я получаю следующую ошибку:
fatal error: priority_queue: No such file or directory
#include <priority_queue>
^
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
1 error(s), 0 warning(s) (0 minute(s), 0 second(s))
Это мои директивы #include:
#include <queue>
#include <vector>
#include <priority_queue>
#include <iostream>
Любая помощь будет оценена.