Skip to content

Commit e7c43c5

Browse files
committed
Updated formatting
1 parent 5315719 commit e7c43c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tensorflow_lite_support/c/common_utils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace tflite {
2424
namespace support {
2525

2626
void CreateTfLiteSupportErrorWithStatus(const absl::Status& status,
27-
TfLiteSupportError** error) {
27+
TfLiteSupportError** error) {
2828
if (status.ok() or error == nullptr) return;
2929

3030
// Payload of absl::Status created by the tflite task library stores an

tensorflow_lite_support/c/common_utils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ limitations under the License.
2525
namespace tflite {
2626
namespace support {
2727

28-
// Creates a TfLiteSupportError from absl::Status and passes it back as a parameter
29-
// which is a pointer to the error pointer.
28+
// Creates a TfLiteSupportError from absl::Status and passes it back as a
29+
// parameter which is a pointer to the error pointer.
3030
//
3131
// Example Usage With Image Classifier
3232
//
@@ -43,7 +43,7 @@ namespace support {
4343
// }
4444
//}
4545
void CreateTfLiteSupportErrorWithStatus(const absl::Status& status,
46-
TfLiteSupportError** error);
46+
TfLiteSupportError** error);
4747

4848
} // namespace support
4949
} // namespace tflite

0 commit comments

Comments
 (0)