radv: remove unneeded extern C notation

Header is never #include(d) by a C++ source.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Emil Velikov 2017-02-16 15:16:31 +00:00 committed by Emil Velikov
parent 4bf9862747
commit 944620bc0e

View file

@ -26,13 +26,10 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <assert.h>
#include <vulkan/vulkan.h>
#include <util/macros.h>
enum vk_format_layout {
/**
* Formats with vk_format_block::width == vk_format_block::height == 1
@ -446,6 +443,3 @@ vk_format_get_component_bits(VkFormat format,
return 0;
}
}
#ifdef __cplusplus
} // extern "C" {
#endif