|
|
|
@@ -115,13 +115,13 @@ class RandomNode : public NonMappableSourceNode { |
|
|
|
/// \param[in] p The node to visit |
|
|
|
/// \param[out] modified Indicator if the node was modified |
|
|
|
/// \return Status of the node visit |
|
|
|
Status Accept(IRNodePass *p, bool *const modified) override; |
|
|
|
Status Accept(IRNodePass *const p, bool *const modified) override; |
|
|
|
|
|
|
|
/// \brief Base-class override for accepting IRNodePass visitor |
|
|
|
/// \param[in] p The node to visit |
|
|
|
/// \param[out] modified Indicator if the node was modified |
|
|
|
/// \return Status of the node visit |
|
|
|
Status AcceptAfter(IRNodePass *p, bool *const modified) override; |
|
|
|
Status AcceptAfter(IRNodePass *const p, bool *const modified) override; |
|
|
|
|
|
|
|
private: |
|
|
|
/// \brief A quick inline for producing a random number between (and including) min/max |
|
|
|
|