Skip to content

Commit a8db3bb

Browse files
Hugh DelaneyAerialMantis
authored andcommitted
Changing to constexpr auto
1 parent 0b1d861 commit a8db3bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Code_Exercises/Exercise_18_Local_Memory_Tiling/solution.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ inline constexpr int filterWidth = 11;
3030
inline constexpr int halo = filterWidth / 2;
3131

3232
TEST_CASE("image_convolution_tiled", "local_memory_tiling_solution") {
33-
const char *inputImageFile = "../Images/dogs.png";
34-
const char *outputImageFile = "../Images/blurred_dogs.png";
33+
constexpr auto inputImageFile = "../Images/dogs.png";
34+
constexpr auto outputImageFile = "../Images/blurred_dogs.png";
3535

3636
auto inputImage = util::read_image(inputImageFile, halo);
3737

0 commit comments

Comments
 (0)