Skip to content

Commit

Permalink
Fix erroneous header guards
Browse files Browse the repository at this point in the history
  • Loading branch information
karthikravis committed May 15, 2019
1 parent 3996599 commit e8bfcf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/grpcpp/channel.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*
*/

#ifndef GRPCPP_CHANNEL_IMPL_H
#define GRPCPP_CHANNEL_IMPL_H
#ifndef GRPCPP_CHANNEL_H
#define GRPCPP_CHANNEL_H

#include <memory>
#include <mutex>
Expand Down Expand Up @@ -113,4 +113,4 @@ class Channel final : public ChannelInterface,

} // namespace grpc

#endif // GRPCPP_CHANNEL_IMPL_H
#endif // GRPCPP_CHANNEL_H

0 comments on commit e8bfcf8

Please sign in to comment.