Skip to content

Commit de67d6e

Browse files
generatedunixname89002005287564facebook-github-bot
authored andcommitted
Fix CQS signal modernize-use-using in xplat/js/react-native-github/packages (#52629)
Summary: Pull Request resolved: #52629 Reviewed By: javache Differential Revision: D78404030 fbshipit-source-id: 553a9f26327c4b3439b773981c25b5e1d469d8f1
1 parent 88bafed commit de67d6e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • packages/react-native/ReactCommon/react/test_utils

packages/react-native/ReactCommon/react/test_utils/MockClock.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111

1212
class MockClock {
1313
public:
14-
typedef std::chrono::
15-
time_point<std::chrono::steady_clock, std::chrono::nanoseconds>
16-
time_point;
14+
using time_point = std::chrono::
15+
time_point<std::chrono::steady_clock, std::chrono::nanoseconds>;
1716

1817
static time_point now() noexcept {
1918
return time_;

0 commit comments

Comments
 (0)