Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify some code by not qualifying an enum fully. #1648

Merged
merged 1 commit into from May 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/aspect/boundary_temperature/function.h
Expand Up @@ -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;
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/boundary_traction/function.h
Expand Up @@ -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;
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/boundary_velocity/function.h
Expand Up @@ -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;
};
}
}
Expand Down
2 changes: 1 addition & 1 deletion include/aspect/initial_temperature/function.h
Expand Up @@ -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;

};
}
Expand Down
Expand Up @@ -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
Expand Down
Expand Up @@ -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
Expand Down