From 5f165594192724d100b9b54450c1e1c8e7c1f789 Mon Sep 17 00:00:00 2001 From: Slavko Brdar Date: Wed, 18 Sep 2024 16:47:10 +0200 Subject: [PATCH] remove debug output --- src/atlas/field/detail/FieldInterface.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/atlas/field/detail/FieldInterface.cc b/src/atlas/field/detail/FieldInterface.cc index 8dea1b132..b8086d72e 100644 --- a/src/atlas/field/detail/FieldInterface.cc +++ b/src/atlas/field/detail/FieldInterface.cc @@ -198,12 +198,10 @@ void atlas__Field__data_long_specf(FieldImpl* This, long*& data, int& rank, int* void atlas__Field__data_float_specf(FieldImpl* This, float*& data, int& rank, int*& shapef, int*& stridesf) { atlas__Field__data_specf(This, data, rank, shapef, stridesf); - std::cout << "atlas__Field__data_float_specf :: rank = " << rank << std::endl; } void atlas__Field__data_double_specf(FieldImpl* This, double*& data, int& rank, int*& shapef, int*& stridesf) { atlas__Field__data_specf(This, data, rank, shapef, stridesf); - std::cout << "atlas__Field__data_double_specf :: rank = " << rank << std::endl; } void atlas__Field__device_data_int_specf(FieldImpl* This, int*& data, int& rank, int*& shapef, int*& stridesf) {