From 732e31f2afcc673983f8506aaddaafe8db7d9ecf Mon Sep 17 00:00:00 2001 From: Masaichi Toki Date: Mon, 14 Sep 2015 12:27:14 +0900 Subject: Add include guard into SampleIterator.h Include guard is added to have SampleIterator.h safer. Change-Id: Ib773a529cb7ab9d55524951f8bd8ed37f58c1cad --- media/libstagefright/include/SampleIterator.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'media/libstagefright/include') diff --git a/media/libstagefright/include/SampleIterator.h b/media/libstagefright/include/SampleIterator.h index 7053247..2ef41ae 100644 --- a/media/libstagefright/include/SampleIterator.h +++ b/media/libstagefright/include/SampleIterator.h @@ -14,6 +14,10 @@ * limitations under the License. */ +#ifndef SAMPLE_ITERATOR_H_ + +#define SAMPLE_ITERATOR_H_ + #include namespace android { @@ -75,3 +79,4 @@ private: } // namespace android +#endif // SAMPLE_ITERATOR_H_ -- cgit v1.1