Skip to content

Commit 3970b47

Browse files
authored
Merge pull request tensorflow#18467 from annarev/fix_windows_libtf
Add missing semicolon
2 parents 7f06ae9 + 20f2b86 commit 3970b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflow/c/c_api_experimental.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8309,7 +8309,7 @@ TF_Operation* TF_MakeFileBasedIteratorGetNextWithDatasets(
83098309
status->status = tensorflow::errors::Unimplemented(
83108310
"TF_MakeFileBasedIteratorGetNextWithDatasets in the experimental C API "
83118311
"is not implemented for Windows");
8312-
return nullptr
8312+
return nullptr;
83138313
#else
83148314
tensorflow::Status s;
83158315

0 commit comments

Comments
 (0)