Skip to content

Commit 84d3d07

Browse files
yfeldblumfacebook-github-bot
authored andcommitted
codemod from folly::as_const to std::as_const
Differential Revision: D55248842 fbshipit-source-id: f5369c1fff4b0a39aa49eec0bb679102d86ead46
1 parent 7e89790 commit 84d3d07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxygen/lib/utils/Exception.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Exception : public std::exception {
2727
explicit Exception(std::string const& msg);
2828
explicit Exception(const char* msg);
2929
Exception(const Exception&);
30-
Exception(Exception& other) : Exception(folly::as_const(other)) {
30+
Exception(Exception& other) : Exception(std::as_const(other)) {
3131
}
3232
Exception(Exception&&) noexcept;
3333

0 commit comments

Comments
 (0)