]> git.stg.codes - stg.git/commitdiff
Add vector definition to divert_cap.cpp
authorMaxim Mamontov <faust.madf@gmail.com>
Mon, 4 Apr 2011 14:23:05 +0000 (17:23 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Mon, 4 Apr 2011 14:23:05 +0000 (17:23 +0300)
projects/stargazer/plugins/capture/divert_freebsd/divert_cap.cpp

index 5d49f6924287769cfdb3d8987ae29081370cd2f5..ca308593c21881c428342a91aee0802620065b5e 100644 (file)
@@ -41,6 +41,7 @@ $Date: 2010/09/10 06:43:03 $
 #include <csignal>
 
 #include <algorithm>
+#include <vector>
 
 #include "common.h"
 #include "divert_cap.h"
@@ -277,7 +278,7 @@ int DIVERT_CAP::ParseSettings()
 {
 int p;
 PARAM_VALUE pv;
-vector<PARAM_VALUE>::const_iterator pvi;
+std::vector<PARAM_VALUE>::const_iterator pvi;
 
 pv.param = "Port";
 pvi = std::find(settings.moduleParams.begin(), settings.moduleParams.end(), pv);