mirror of
https://github.com/NixOS/nix
synced 2025-06-25 02:21:16 +02:00
This only touches code comments, class names, documentation, enumeration names and tests.
17 lines
343 B
C++
17 lines
343 B
C++
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
// including the generated headers twice leads to errors
|
|
#ifndef BISON_HEADER
|
|
# include "lexer-tab.hh"
|
|
# include "parser-tab.hh"
|
|
#endif
|
|
|
|
namespace nix::lexer::internal {
|
|
|
|
void initLoc(YYLTYPE * loc);
|
|
|
|
void adjustLoc(yyscan_t yyscanner, YYLTYPE * loc, const char * s, size_t len);
|
|
|
|
} // namespace nix::lexer
|