diff options
Diffstat (limited to 'twrp-functions.cpp')
-rw-r--r-- | twrp-functions.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/twrp-functions.cpp b/twrp-functions.cpp index cd8700f8f..89714dd7d 100644 --- a/twrp-functions.cpp +++ b/twrp-functions.cpp @@ -1289,4 +1289,10 @@ void TWFunc::SetPerformanceMode(bool mode) { usleep(500000); } +std::string TWFunc::to_string(unsigned long value) { + std::ostringstream os; + os << value; + return os.str(); +} + #endif // ndef BUILD_TWRPTAR_MAIN |