From a46893b4649e6b6789ca5f38e4ac23c903749c73 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 13 May 2017 19:23:37 -0600 Subject: [PATCH] Simplify some code by not qualifying an enum fully. --- include/aspect/boundary_temperature/function.h | 2 +- include/aspect/boundary_traction/function.h | 2 +- include/aspect/boundary_velocity/function.h | 2 +- include/aspect/initial_temperature/function.h | 2 +- include/aspect/mesh_refinement/maximum_refinement_function.h | 2 +- include/aspect/mesh_refinement/minimum_refinement_function.h | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/aspect/boundary_temperature/function.h b/include/aspect/boundary_temperature/function.h index 388de64ce03..1ee97327179 100644 --- a/include/aspect/boundary_temperature/function.h +++ b/include/aspect/boundary_temperature/function.h @@ -126,7 +126,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; }; } } diff --git a/include/aspect/boundary_traction/function.h b/include/aspect/boundary_traction/function.h index 0d65b01881c..63d37e68329 100644 --- a/include/aspect/boundary_traction/function.h +++ b/include/aspect/boundary_traction/function.h @@ -100,7 +100,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; }; } } diff --git a/include/aspect/boundary_velocity/function.h b/include/aspect/boundary_velocity/function.h index 55d348313fa..f18ceadb17e 100644 --- a/include/aspect/boundary_velocity/function.h +++ b/include/aspect/boundary_velocity/function.h @@ -103,7 +103,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; }; } } diff --git a/include/aspect/initial_temperature/function.h b/include/aspect/initial_temperature/function.h index 9dff0c3e10d..1bf76576551 100644 --- a/include/aspect/initial_temperature/function.h +++ b/include/aspect/initial_temperature/function.h @@ -85,7 +85,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; }; } diff --git a/include/aspect/mesh_refinement/maximum_refinement_function.h b/include/aspect/mesh_refinement/maximum_refinement_function.h index 220cc011c9d..83234398283 100644 --- a/include/aspect/mesh_refinement/maximum_refinement_function.h +++ b/include/aspect/mesh_refinement/maximum_refinement_function.h @@ -80,7 +80,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; /** * A function object representing the maximum refinement level. The diff --git a/include/aspect/mesh_refinement/minimum_refinement_function.h b/include/aspect/mesh_refinement/minimum_refinement_function.h index 1790fc7389f..146127cdc32 100644 --- a/include/aspect/mesh_refinement/minimum_refinement_function.h +++ b/include/aspect/mesh_refinement/minimum_refinement_function.h @@ -81,7 +81,7 @@ namespace aspect * The coordinate representation to evaluate the function. Possible * choices are depth, cartesian and spherical. */ - ::aspect::Utilities::Coordinates::CoordinateSystem coordinate_system; + Utilities::Coordinates::CoordinateSystem coordinate_system; /** * A function object representing the minimum refinement level. The