By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release.

Bug 2895

Summary: knemo knemodaemon.h patch for clang
Product: TDE Reporter: Ray Vine <ray-v>
Component: non-core programsAssignee: Timothy Pearson <kb9vqf>
Status: RESOLVED FIXED    
Severity: normal CC: bugwatch, slavek.banko
Priority: P5    
Version: R14.0.x [Trinity]   
Hardware: All   
OS: Linux   
Compiler Version: TDE Version String:
Application Version: Application Name:
Bug Depends on:    
Bug Blocks: 2696    

Description Ray Vine 2018-05-06 09:32:17 CDT
Error:
In file included from knemodaemon_skel.cpp:9:
./../../../src/knemod/knemodaemon.h:38:7: error: forward declaration of class cannot have a nested name specifier
class KNotifyClient::Instance;
      ^~~~~~~~~~~~~~~

Patch:
--- src/knemod/knemodaemon.h
+++ src/knemod/knemodaemon.h
@@ -38 +38 @@
-class KNotifyClient::Instance;
+namespace KNotifyClient { class Instance; }
Comment 1 Slávek Banko 2018-05-19 07:49:47 CDT
Pushed to GIT in hash 47f4d66f (master) and cb7ae4e6 (r14.0.x).