From ecd3f85fc68c0e33e1340460839151a4fe178f90 Mon Sep 17 00:00:00 2001 From: Liam Middlebrook Date: Mon, 19 Mar 2018 12:28:04 -0700 Subject: layers: Fix Superfluous inttypes.h Includes The files that explicitly include are C++ files. The convention for including C header files in C++ programs is to use a special C++ header file that wraps the C header file. For example would be included as . In vk_layer_logging.h:34 is included. In buffer_validation.cpp and parameter_validation_utils.cpp "vk_layer_logging.h" is directly included. In core_validation.cpp "vk_layer_logging.h" is indirectly included via core_validation.h This change removes the invalid and superfluous use of C header files from the aforementioned C++ files. Change-Id: I1bed9ea4bf6c3bb98ac5ae05ad227c0da58acb2c Reviewed-by: dkoch Reviewed-by: ddadap --- layers/parameter_validation_utils.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'layers/parameter_validation_utils.cpp') diff --git a/layers/parameter_validation_utils.cpp b/layers/parameter_validation_utils.cpp index 69f12837..e74a846a 100644 --- a/layers/parameter_validation_utils.cpp +++ b/layers/parameter_validation_utils.cpp @@ -25,7 +25,6 @@ #include #include #include -#include #include #include -- cgit v1.2.3