Browse Source

[2497] Delete trailing whitespace

Mukund Sivaraman 12 years ago
parent
commit
e980e67482
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/dns/rrparamregistry-placeholder.cc

+ 2 - 2
src/lib/dns/rrparamregistry-placeholder.cc

@@ -37,7 +37,7 @@ using namespace std;
 using namespace boost;
 
 using namespace isc::util;
-using namespace isc::dns::rdata; 
+using namespace isc::dns::rdata;
 
 namespace isc {
 namespace dns {
@@ -307,7 +307,7 @@ namespace {
 /// This could be simplified using strncasecmp(), but unfortunately it's not
 /// included in <cstring>.  To be as much as portable within the C++ standard
 /// we take the "in house" approach here.
-/// 
+///
 bool CICharEqual(char c1, char c2) {
     return (tolower(static_cast<unsigned char>(c1)) ==
             tolower(static_cast<unsigned char>(c2)));