Skip to content

Commit

Permalink
Add missing CINDEX_LINKAGE
Browse files Browse the repository at this point in the history
Follow up for [libclang] Add PrintingPolicy for pretty printing declarations

Differential Revision: https://reviews.llvm.org/D39903

llvm-svn: 322546
  • Loading branch information
Ivan Donchevskii committed Jan 16, 2018
1 parent 76ce3d9 commit 4cab0fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions clang/include/clang-c/Index.h
Expand Up @@ -4136,16 +4136,16 @@ enum CXPrintingPolicyProperty {
/**
* \brief Get a property value for the given printing policy.
*/
unsigned
CINDEX_LINKAGE unsigned
clang_PrintingPolicy_getProperty(CXPrintingPolicy Policy,
enum CXPrintingPolicyProperty Property);

/**
* \brief Set a property value for the given printing policy.
*/
void clang_PrintingPolicy_setProperty(CXPrintingPolicy Policy,
enum CXPrintingPolicyProperty Property,
unsigned Value);
CINDEX_LINKAGE void clang_PrintingPolicy_setProperty(CXPrintingPolicy Policy,
enum CXPrintingPolicyProperty Property,
unsigned Value);

/**
* \brief Retrieve the default policy for the cursor.
Expand Down

0 comments on commit 4cab0fe

Please sign in to comment.