Skip to content

Commit

Permalink
remove extra default arg
Browse files Browse the repository at this point in the history
  • Loading branch information
will-cromar committed Nov 30, 2023
1 parent 15338e0 commit fde5b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torch_xla/csrc/runtime/runtime.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ std::unique_ptr<ComputationClient> CreateClient() {

} // namespace

ComputationClient* GetComputationClient(bool create = true) {
ComputationClient* GetComputationClient(bool create) {
static std::unique_ptr<ComputationClient> client = nullptr;
if (!client && create) {
static std::once_flag flag;
Expand Down

0 comments on commit fde5b87

Please sign in to comment.