From b39ffbe851c416dbcf3b9a3976235b6a5334139a Mon Sep 17 00:00:00 2001 From: Federico Perini Date: Wed, 1 May 2024 09:19:26 +0200 Subject: [PATCH] remove ambiguous `operator(==)` --- src/fpm/manifest/preprocess.f90 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/fpm/manifest/preprocess.f90 b/src/fpm/manifest/preprocess.f90 index 49ad24f82d..2370575d2a 100644 --- a/src/fpm/manifest/preprocess.f90 +++ b/src/fpm/manifest/preprocess.f90 @@ -58,10 +58,6 @@ module fpm_manifest_preprocess character(*), parameter, private :: class_name = 'preprocess_config_t' - interface operator(==) - module procedure preprocess_is_same - end interface - contains !> Construct a new preprocess configuration from TOML data structure @@ -208,7 +204,6 @@ logical function preprocess_is_same(this,that) integer :: istr - preprocess_is_same = .false. select type (other=>that)