From 2848d2ed88d4b2425dbb89469212368f2a33192b Mon Sep 17 00:00:00 2001 From: Jonah Miller Date: Mon, 24 Feb 2025 17:46:45 -0700 Subject: [PATCH] pretty sure I don't need const versions here... --- test/test_pte_ideal.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/test_pte_ideal.cpp b/test/test_pte_ideal.cpp index 36e24f645d..6412027aaf 100644 --- a/test/test_pte_ideal.cpp +++ b/test/test_pte_ideal.cpp @@ -53,10 +53,6 @@ struct LambdaIndexerSingle { Real &operator[](const int i) { return z; } PORTABLE_FORCEINLINE_FUNCTION Real &operator[](const MeanIonizationState &s) { return z; } - PORTABLE_FORCEINLINE_FUNCTION - const Real &operator[](const int i) const { return z; } - PORTABLE_FORCEINLINE_FUNCTION - const Real &operator[](const MeanIonizationState &s) const { return z; } Real z = 0.9; };