description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Warning (level 1) C4384 |
Compiler Warning (level 1) C4384 |
11/04/2016 |
|
|
fafa8eb2-cbfc-4edb-8b0f-511ff5d37ac0 |
#pragma 'make_public' should only be used at global scope
The make_public pragma was applied incorrectly.
The following sample generates C4384.
// C4384.cpp
// compile with: /c /W1
namespace n {
#pragma make_public(N::C) // C4384
namespace N {
class C {};
}
}