commit | d43aacf2c38a2fac15511d8afd48be994566d014 | [log] [tgz] |
---|---|---|
author | Lee Campbell <leecam@google.com> | Fri Jul 31 21:47:13 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Fri Jul 31 21:47:13 2015 +0000 |
tree | 83ba4c9d779fb2a8a0ca9096049782f65fe8b536 | |
parent | 3c5a6ae75de210c2b3b5e7496920f139d2b634b4 [diff] | |
parent | 7b8be41a52ef8a09210737a41803fce48be6003a [diff] |
Merge "init: Adding header guard to tokenizer"
diff --git a/init/parser/tokenizer.h b/init/parser/tokenizer.h index 40a22b1..8312a08 100644 --- a/init/parser/tokenizer.h +++ b/init/parser/tokenizer.h
@@ -12,6 +12,9 @@ // See the License for the specific language governing permissions and // limitations under the License. +#ifndef _INIT_PARSER_TOKENIZER_H +#define _INIT_PARSER_TOKENIZER_H + #include <string> namespace init { @@ -67,3 +70,5 @@ }; } // namespace init + +#endif