aboutsummaryrefslogtreecommitdiff
path: root/butl/char-scanner
diff options
context:
space:
mode:
Diffstat (limited to 'butl/char-scanner')
-rw-r--r--butl/char-scanner4
1 files changed, 3 insertions, 1 deletions
diff --git a/butl/char-scanner b/butl/char-scanner
index d50745e..a3b1ad7 100644
--- a/butl/char-scanner
+++ b/butl/char-scanner
@@ -9,12 +9,14 @@
#include <iosfwd>
#include <cstdint> // uint64_t
+#include <butl/export>
+
namespace butl
{
// Low-level character stream scanner. Normally used as a base for
// higher-level lexers.
//
- class char_scanner
+ class LIBBUTL_EXPORT char_scanner
{
public:
char_scanner (std::istream& is): is_ (is) {}