callstack_android.cpp 344 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2012-2023 Daniele Bartolini et al.
  3. * SPDX-License-Identifier: MIT
  4. */
  5. #include "core/platform.h"
  6. #if CROWN_PLATFORM_ANDROID
  7. #include "core/strings/string_stream.inl"
  8. namespace crown
  9. {
  10. namespace error
  11. {
  12. void callstack(StringStream &ss)
  13. {
  14. ss << "Not supported";
  15. }
  16. } // namespace error
  17. } // namespace crown
  18. #endif