Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 618 Bytes

compiler-warning-level-1-c4384.md

File metadata and controls

28 lines (23 loc) · 618 Bytes
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
C4384
C4384
fafa8eb2-cbfc-4edb-8b0f-511ff5d37ac0

Compiler Warning (level 1) C4384

#pragma 'make_public' should only be used at global scope

The make_public pragma was applied incorrectly.

Example

The following sample generates C4384.

// C4384.cpp
// compile with: /c /W1
namespace n {
   #pragma make_public(N::C)   // C4384
   namespace N {
      class C {};
   }
}