]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/LeakFinder.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / LeakFinder.cc
index 701d7e565b91e22d494551619ab88833a2668700..0c7aaee3d25ada1842bd05148fa02ac66de2aee5 100644 (file)
@@ -23,9 +23,9 @@
 /* ========================================================================= */
 
 LeakFinderPtr::LeakFinderPtr(void *p , const char *f, const int l) :
-        file(f),
-        line(l),
-        when(squid_curtime)
+    file(f),
+    line(l),
+    when(squid_curtime)
 {
     // XXX: these bits should be done by hash_link()
     key = p;
@@ -35,8 +35,8 @@ LeakFinderPtr::LeakFinderPtr(void *p , const char *f, const int l) :
 /* ========================================================================= */
 
 LeakFinder::LeakFinder() :
-        count(0),
-        last_dump(0)
+    count(0),
+    last_dump(0)
 {
     debugs(45, 3, "LeakFinder constructed");
     table = hash_create(cmp, 1 << 8, hash);
@@ -123,3 +123,4 @@ LeakFinder::dump()
 }
 
 #endif /* USE_LEAKFINDER */
+