| commit | 2fb72cfeecbfe7660767556a5128d21dba94c922 | [log] [tgz] |
|---|---|---|
| author | braveyao@webrtc.org <braveyao@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Tue Dec 24 05:06:12 2013 |
| committer | braveyao@webrtc.org <braveyao@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d> | Tue Dec 24 05:06:12 2013 |
| tree | 12b52af6ba6827243b208414a6b9a6185e91d4d9 | |
| parent | 0062a6d0995c24f423504aba83b3f086cabec924 [diff] |
Add include guards to forward_error_correction_internal.h R=henrika@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/5789005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5335 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h index ddac3cd..f82e46d 100644 --- a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h +++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h
@@ -8,6 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FORWARD_ERROR_CORRECTION_INTERNAL_H_ +#define WEBRTC_MODULES_RTP_RTCP_SOURCE_FORWARD_ERROR_CORRECTION_INTERNAL_H_ + #include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" #include "webrtc/typedefs.h" @@ -64,3 +67,4 @@ } // namespace internal } // namespace webrtc +#endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_FORWARD_ERROR_CORRECTION_INTERNAL_H_