blob: 8208edb4bcdb3b052a2a3a9bfa682466504adeab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- ./classes/include/ArtsSelectionSet.hh.orig Mon Oct 2 13:05:20 2000
+++ ./classes/include/ArtsSelectionSet.hh Wed Sep 25 16:38:10 2002
@@ -49,6 +49,7 @@
#include <vector>
#include <algorithm>
+using namespace std;
#include "ArtsSelection.hh"
@@ -96,7 +97,7 @@
//-------------------------------------------------------------------------
bool Matches(const Type & value) const
{
- const_iterator selectionIter;
+ typename ArtsSelectionSet<Type>::const_iterator selectionIter;
bool rc = false;
for (selectionIter = this->begin(); selectionIter != this->end();
|