diff options
Diffstat (limited to 'src/lib/dns/master_lexer_inputsource.h')
-rw-r--r-- | src/lib/dns/master_lexer_inputsource.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/dns/master_lexer_inputsource.h b/src/lib/dns/master_lexer_inputsource.h index d830239c98..12a75757b7 100644 --- a/src/lib/dns/master_lexer_inputsource.h +++ b/src/lib/dns/master_lexer_inputsource.h @@ -5,7 +5,7 @@ // file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef DNS_INPUTSOURCE_H -#define DNS_INPUTSOURCE_H 1 +#define DNS_INPUTSOURCE_H #include <exceptions/exceptions.h> @@ -87,7 +87,9 @@ public: /// the size of sources and for when the size can be unknown. /// /// \throw None - size_t getSize() const { return (input_size_); } + size_t getSize() const { + return (input_size_); + } /// \brief Returns the current read position in the input source. /// @@ -105,7 +107,9 @@ public: /// values may not always monotonically increase. /// /// \throw None - size_t getPosition() const { return (total_pos_); } + size_t getPosition() const { + return (total_pos_); + } /// \brief Returns if the input source is at end of file. bool atEOF() const { @@ -179,7 +183,3 @@ private: } // namespace isc #endif // DNS_INPUTSOURCE_H - -// Local Variables: -// mode: c++ -// End: |