1. ホーム
  2. c++

[解決済み] 名前空間 'std' の 'vector' が型名でない

2022-02-11 19:20:55

質問

Debian 7.0.0上でCodeBlockS 10.05を使用してC++アプリケーションを開発しています。

なぜか、以下のようなコード

#include <iostream>

std::vector< int > delaunayDiv(const std::vector< int <T> > & vP, cv::Rect boundRect,
    std::vector<int>& triangles, int& numTriangles, bool lookRight);

は次のようなエラーを返します。

error: 'vector' in namespace 'std' does not name a type

解決方法は?

を含める必要があります。 vector ヘッダを表示します。

#include <vector>