Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 06584400 authored by Lee Campbell's avatar Lee Campbell
Browse files

init: Adding header guard to tokenizer

Fixing missing header guard

BUG: 22843198
Change-Id: Ice5d29d343ffe093aae46d4ac3fd72de628fb12e
parent d548e30f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -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 @@ class Tokenizer {
};

}  // namespace init

#endif