(svn r26108) -Codechange: some coding style (whitespace)

This commit is contained in:
rubidium
2013-11-25 14:30:22 +00:00
parent 6996b441d9
commit defda16eb6
36 changed files with 38 additions and 38 deletions

View File

@@ -59,9 +59,9 @@ DECLARE_POSTFIX_INCREMENT(Driver::Type)
/** Base for all driver factories. */
class DriverFactoryBase {
private:
Driver::Type type; ///< The type of driver.
Driver::Type type; ///< The type of driver.
int priority; ///< The priority of this factory.
const char *name; ///< The name of the drivers of this factory.
const char *name; ///< The name of the drivers of this factory.
const char *description; ///< The description of this driver.
typedef std::map<const char *, DriverFactoryBase *, StringCompare> Drivers; ///< Type for a map of drivers.