aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2021-06-18 16:32:20 -0600
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2021-11-29 13:03:31 -0700
commit4c1550a705db7690f03564ae828a3c6cfb34f358 (patch)
tree49275ada29786da8cd50ef390ada634063d42a05
parentb991aa399063a9f2388dadfd2f425754d20f747f (diff)
downloadusermoji-4c1550a705db7690f03564ae828a3c6cfb34f358.tar.xz
vulkaninfo: Fix formatting
-rw-r--r--vulkaninfo/vulkaninfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vulkaninfo/vulkaninfo.h b/vulkaninfo/vulkaninfo.h
index 31f8c594..2d368312 100644
--- a/vulkaninfo/vulkaninfo.h
+++ b/vulkaninfo/vulkaninfo.h
@@ -221,7 +221,7 @@ static VKAPI_ATTR VkBool32 VKAPI_CALL DbgCallback(VkDebugReportFlagsEXT msgFlags
// Helper for robustly executing the two-call pattern
template <typename T, typename F, typename... Ts>
-auto GetVectorInit(const char *func_name, F &&f, T init, Ts &&... ts) -> std::vector<T> {
+auto GetVectorInit(const char *func_name, F &&f, T init, Ts &&...ts) -> std::vector<T> {
uint32_t count = 0;
std::vector<T> results;
VkResult err;
@@ -237,7 +237,7 @@ auto GetVectorInit(const char *func_name, F &&f, T init, Ts &&... ts) -> std::ve
}
template <typename T, typename F, typename... Ts>
-auto GetVector(const char *func_name, F &&f, Ts &&... ts) -> std::vector<T> {
+auto GetVector(const char *func_name, F &&f, Ts &&...ts) -> std::vector<T> {
return GetVectorInit(func_name, f, T(), ts...);
}