Skip to content

Commit

Permalink
Namespace doesn't need to be followed by semicolon
Browse files Browse the repository at this point in the history
Summary:
Auto-generated with
```
fbgs "}; // namespace" -l | sort | uniq | sed 's/fbsource.//' | xargs -n 50 sed -i 's_}; // namespace_} // namespace_'
```

Reviewed By: dmm-fb

Differential Revision: D51029740

fbshipit-source-id: 177e3f6e6b0ab7e986b1147952cd5e2f59d4b1fc
  • Loading branch information
r-barnes authored and facebook-github-bot committed Nov 6, 2023
1 parent d49bef5 commit 10a985e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flashlight/fl/common/threadpool/ThreadPool.h
Expand Up @@ -70,7 +70,7 @@ class ThreadPool {
std::mutex queue_mutex;
std::condition_variable condition;
bool stop;
}; // namespace flclassThreadPool
} // namespace flclassThreadPool

inline ThreadPool::ThreadPool(
size_t threads,
Expand Down
2 changes: 1 addition & 1 deletion flashlight/fl/tensor/backend/af/mem/MemoryManagerAdapter.h
Expand Up @@ -183,4 +183,4 @@ void MemoryManagerAdapter::log(std::string fname, Values... vs) {
}
}

}; // namespace fl
} // namespace fl

0 comments on commit 10a985e

Please sign in to comment.