Remove NS_RDF from this class declaration. This was giving us link warnings in every dll that linked with this library on windows. Why? When we link against the library, the macro is defining the class as an imported class; however because the library is statically linked, it really is a local declaration.

a=waterson
This commit is contained in:
mscott%netscape.com 1999-05-18 21:28:43 +00:00
Родитель 7417bf0a72
Коммит 42ca1bf61a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ class nsIRDFService;
* This simple base class implements nsIRDFResource, and can be used as a
* superclass for more sophisticated resource implementations.
*/
class NS_RDF nsRDFResource : public nsIRDFResource {
class nsRDFResource : public nsIRDFResource {
public:
NS_DECL_ISUPPORTS