From f6b78a715472b9eac04f1244fd9b432e60449195 Mon Sep 17 00:00:00 2001 From: plapins Date: Thu, 7 Apr 2016 08:35:47 +0200 Subject: [PATCH] Fixed indentation and unnecessary whitespaces in Tutorial01.cpp and Tutorial04.cpp. --- Project/Tutorial01/Tutorial01.cpp | 4 ++-- Project/Tutorial04/Tutorial04.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project/Tutorial01/Tutorial01.cpp b/Project/Tutorial01/Tutorial01.cpp index 30de215..d5d040a 100644 --- a/Project/Tutorial01/Tutorial01.cpp +++ b/Project/Tutorial01/Tutorial01.cpp @@ -78,8 +78,8 @@ namespace Tutorial { #define VK_EXPORTED_FUNCTION( fun ) \ if( !(fun = (PFN_##fun)LoadProcAddress( VulkanLibrary, #fun )) ) { \ - printf( "Could not load exported function: " #fun "!\n" ); \ - return false; \ + printf( "Could not load exported function: " #fun "!\n" ); \ + return false; \ } #include "ListOfFunctions.inl" diff --git a/Project/Tutorial04/Tutorial04.cpp b/Project/Tutorial04/Tutorial04.cpp index e8e7471..1eff721 100644 --- a/Project/Tutorial04/Tutorial04.cpp +++ b/Project/Tutorial04/Tutorial04.cpp @@ -133,7 +133,7 @@ namespace Tutorial { i // uint32_t memoryTypeIndex }; - if( vkAllocateMemory( GetDevice( ), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) { + if( vkAllocateMemory( GetDevice(), &memory_allocate_info, nullptr, memory ) == VK_SUCCESS ) { return true; } }