]> Chaos Git - console/XDS.git/commitdiff
Remove couple more extra qualifications for gcc
authorThomas Edvalson <machin3@gmail.com>
Sun, 6 Dec 2015 19:57:29 +0000 (14:57 -0500)
committerThomas Edvalson <machin3@gmail.com>
Sun, 6 Dec 2015 19:57:29 +0000 (14:57 -0500)
include/kernel/AutoObjectRef.h
include/kernel/Process.h

index 1c052915ee1ed26246d11ae352469d1af3a1615a..b5de47e5f16ac6e458d07fca0d83bbf895219568 100644 (file)
@@ -1,6 +1,6 @@
 class KAutoObjectRef {
 public:
-       KAutoObjectRef::KAutoObjectRef(const KAutoObjectRef &obj);
+       KAutoObjectRef(const KAutoObjectRef &obj);
     KAutoObjectRef();
     KAutoObjectRef(KAutoObject* object);
     ~KAutoObjectRef();
index 5b0465e31663f4fa5c6237e5edafac77fa46f95d..e36387efa3f27eeed40bb2d137bc0571d81966f7 100644 (file)
@@ -9,7 +9,7 @@ public:
 
     bool Synchronization(KThread* thread, u32 &error);
 
-       KProcess::~KProcess();
+       ~KProcess();
 
     KProcess(KCodeSet* code, u32 capabilities_num, u32* capabilities_ptr, KKernel* Kernel,bool );