1
0
Fork 0

even more unconstification

This commit is contained in:
jsteemann 2015-12-03 11:11:10 +01:00
parent 135d434a7f
commit eb5b68089e
1 changed files with 3 additions and 3 deletions

View File

@ -249,7 +249,7 @@ namespace triagens {
/// @brief Checks if we output the vertex /// @brief Checks if we output the vertex
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
bool const usesVertexOutput () { bool usesVertexOutput () {
return _vertexVar != nullptr; return _vertexVar != nullptr;
} }
@ -257,7 +257,7 @@ namespace triagens {
/// @brief Checks if we output the edge /// @brief Checks if we output the edge
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
bool const usesEdgeOutput () { bool usesEdgeOutput () {
return _edgeVar != nullptr; return _edgeVar != nullptr;
} }
@ -265,7 +265,7 @@ namespace triagens {
/// @brief Checks if we output the path /// @brief Checks if we output the path
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
bool const usesPathOutput () { bool usesPathOutput () {
return _pathVar != nullptr; return _pathVar != nullptr;
} }