mirror of https://gitee.com/bigwinds/arangodb
even more unconstification
This commit is contained in:
parent
135d434a7f
commit
eb5b68089e
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue