]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[4096] spaces & spelling
authorFrancis Dupont <fdupont@isc.org>
Wed, 18 Nov 2015 15:48:03 +0000 (16:48 +0100)
committerFrancis Dupont <fdupont@isc.org>
Wed, 18 Nov 2015 15:48:03 +0000 (16:48 +0100)
src/lib/dhcpsrv/client_class_def.h

index 4c100f443fdbd8f0aab0e3cb030ce7ce4a39eb08..bdfca3c601464faa27437f5f1adf56c0a5f697a1 100644 (file)
@@ -46,7 +46,7 @@ public:
 
 /// @brief Embodies a single client class definition
 class ClientClassDef {
-  public:
+public:
     /// @brief Constructor
     ///
     /// @param name Name to assign to this class
@@ -114,7 +114,7 @@ class ClientClassDef {
     /// @brief Provides a convenient text representation of the class
     friend std::ostream& operator<<(std::ostream& os, const ClientClassDef& x);
 
-  private:
+private:
     /// @brief Unique text identifier by which this class is known.
     std::string name_;
 
@@ -135,13 +135,13 @@ typedef std::map<std::string, ClientClassDefPtr> ClientClassDefMap;
 /// @brief Defines a pointer to a ClientClassDictionary
 typedef boost::shared_ptr<ClientClassDefMap> ClientClassDefMapPtr;
 
-/// @brief Defines a pair for working wiht ClientClassMap
+/// @brief Defines a pair for working with ClientClassMap
 typedef std::pair<std::string, ClientClassDefPtr> ClientClassMapPair;
 
 /// @brief Maintains a list of ClientClassDef's
 class ClientClassDictionary {
 
-  public:
+public:
     /// @brief Constructor
     ClientClassDictionary();
 
@@ -216,7 +216,7 @@ class ClientClassDictionary {
         return (!equals(other));
     }
 
-  private:
+private:
 
     /// @brief Map of the class definitions
     ClientClassDefMapPtr classes_;