commit | 0f91887868e51de67bdf9aedc97fbcb044dc1969 | [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 | ec035950e69badab883b5751c1059def2eea353d [diff] | |
parent | 06584400dd76d9bd2e23457e15d8972b331e2e58 [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