Browse Source

[1206] somehow i lost some indentation. put it back

Jelte Jansen 13 years ago
parent
commit
e380108192
1 changed files with 9 additions and 9 deletions
  1. 9 9
      src/lib/datasrc/factory.h

+ 9 - 9
src/lib/datasrc/factory.h

@@ -39,9 +39,9 @@ public:
 ///        implementation library
 class DataSourceLibrarySymbolError : public DataSourceError {
 public:
-DataSourceLibrarySymbolError(const char* file, size_t line,
-                             const char* what) :
-    DataSourceError(file, line, what) {}
+    DataSourceLibrarySymbolError(const char* file, size_t line,
+                                 const char* what) :
+        DataSourceError(file, line, what) {}
 };
 
 /// \brief Raised if the given config contains bad data
@@ -50,12 +50,12 @@ DataSourceLibrarySymbolError(const char* file, size_t line,
 /// instance, the sqlite3 datasource needs a database file).
 class DataSourceConfigError : public DataSourceError {
 public:
-DataSourceConfigError(const char* file, size_t line, const char* what) :
-    DataSourceError(file, line, what) {}
-// This exception is created in the dynamic modules. Apparently
-// sunstudio can't handle it if we then automatically derive the
-// destructor, so we provide it explicitely
-~DataSourceConfigError() throw() {}
+    DataSourceConfigError(const char* file, size_t line, const char* what) :
+        DataSourceError(file, line, what) {}
+    // This exception is created in the dynamic modules. Apparently
+    // sunstudio can't handle it if we then automatically derive the
+    // destructor, so we provide it explicitely
+    ~DataSourceConfigError() throw() {}
 };
 
 typedef DataSourceClient* ds_creator(isc::data::ConstElementPtr config);