Warning suppression.

This commit is contained in:
Atgeirr Flø Rasmussen
2011-12-07 15:53:13 +01:00
parent 8a6f3e6921
commit 52b2108634

View File

@@ -150,7 +150,7 @@ namespace Opm {
const std::vector<int>& nb_faces)
{
std::vector<int> nbhf(hf_faces.size());
for(int i=0; i<p_faces.size(); ++i){
for(unsigned int i=0; i<p_faces.size(); ++i){
int nbf = nb_faces[i];
if(f2hf_[2*nbf] == -1){
nbhf[i] = f2hf_[2*nbf+1];
@@ -159,7 +159,7 @@ namespace Opm {
nbhf[i] = f2hf_[2*nbf];
}
}
for(int i=0; i<p_faces.size(); ++i){
for(unsigned int i=0; i<p_faces.size(); ++i){
int f = p_faces[i];
int hf = hf_faces[i];