Commit 32a9ea1c by Hernan Liatis

Resolve build issues with Reactor on Android

Constructor overloads in Reactor is causing the build on Android to fail. Change-Id: I446b345d420b8789ece77a245b2cd3eab8499e35 Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/28444Reviewed-by: 's avatarBen Clayton <bclayton@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com> Presubmit-Ready: Ben Clayton <bclayton@google.com> Kokoro-Presubmit: kokoro <noreply+kokoro@google.com> Tested-by: 's avatarChris Forbes <chrisforbes@google.com>
parent 26357f18
......@@ -3011,8 +3011,6 @@ namespace rr
PrintValue(uint32_t v) : format(std::to_string(v)) {}
PrintValue(int64_t v) : format(std::to_string(v)) {}
PrintValue(uint64_t v) : format(std::to_string(v)) {}
PrintValue(long v) : format(std::to_string(v)) {}
PrintValue(unsigned long v) : format(std::to_string(v)) {}
PrintValue(float v) : format(std::to_string(v)) {}
PrintValue(double v) : format(std::to_string(v)) {}
PrintValue(const char* v) : format(v) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment