Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ jobs:
channel: stable
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install clang-format-11
pip install clang-format==16.0.6
- name: Check format
run: |
./tools/tools_runner.sh format --fail-on-change --no-kotlin --no-java --no-swift --clang-format-path=clang-format-11 \
Expand Down
1 change: 1 addition & 0 deletions packages/flutter_tts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT

* Follow the analysis options of the frontend plugin.
* Apply clang-format-16 formatting.

## 1.7.1

Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_tts/tizen/src/text_to_speech.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class TextToSpeech {
return supported_lanaguages_;
}

const std::vector<std::map<std::string, std::string>>
&GetSupportedVoiceTypes() {
const std::vector<std::map<std::string, std::string>> &
GetSupportedVoiceTypes() {
return supported_voice_types_;
}

Expand Down
4 changes: 4 additions & 0 deletions packages/in_app_purchase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## NEXT

* Apply clang-format-16 formatting.

## 0.1.9

* Fix the return type of `sso_get_login_info` and clear the login info after use.
Expand Down
4 changes: 2 additions & 2 deletions packages/in_app_purchase/tizen/inc/rapidjson/rapidjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ RAPIDJSON_NAMESPACE_END
#define RAPIDJSON_STATIC_ASSERT(x) \
typedef ::RAPIDJSON_NAMESPACE::StaticAssertTest<sizeof( \
::RAPIDJSON_NAMESPACE::STATIC_ASSERTION_FAILURE<bool(x)>)> \
RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) \
RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) \
RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
#endif // RAPIDJSON_STATIC_ASSERT

///////////////////////////////////////////////////////////////////////////////
Expand Down
1 change: 1 addition & 0 deletions packages/video_player_avplay/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Omit obvious local variable types.
* Reformat with a line length of 100.
* Replace Ecore pipes with GLib idle callbacks.
* Apply clang-format-16 formatting.

## 0.8.18

Expand Down
4 changes: 2 additions & 2 deletions packages/video_player_avplay/tizen/inc/rapidjson/rapidjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ RAPIDJSON_NAMESPACE_END
#define RAPIDJSON_STATIC_ASSERT(x) \
typedef ::RAPIDJSON_NAMESPACE::StaticAssertTest<sizeof( \
::RAPIDJSON_NAMESPACE::STATIC_ASSERTION_FAILURE<bool(x)>)> \
RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) \
RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
RAPIDJSON_JOIN(StaticAssertTypedef, __LINE__) \
RAPIDJSON_STATIC_ASSERT_UNUSED_ATTRIBUTE
#endif // RAPIDJSON_STATIC_ASSERT

///////////////////////////////////////////////////////////////////////////////
Expand Down
Loading