Commit 29e81753 authored by Seblu's avatar Seblu
Browse files

fix error.h bug

parent acd8269a
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -28,7 +28,6 @@ sls_SOURCES= src/sls.cc \
		src/sll/connection.cc

noinst_HEADERS=	src/sls.hh		\
		src/error.hh		\
		src/option.hh		\
		src/database.hh		\
		src/cron.hh		\
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ public:
  friend Error &operator<<(Error &e, const string &s);
  friend Error &operator>>(Error &e, const string &s);
  friend Error &operator<<(Error &e, int val);

protected:
  sstream msg_;
  int val_;