Core: Remove whitespace

This commit is contained in:
Vincent-Michael
2014-08-27 23:21:55 +02:00
parent 00475facf2
commit a52135f276
6 changed files with 12 additions and 12 deletions

View File

@@ -41,7 +41,7 @@ else()
OUTPUT_STRIP_TRAILING_WHITESPACE
ERROR_QUIET
)
# Also retrieve branch name
execute_process(
COMMAND "${GIT_EXEC}" rev-parse --abbrev-ref HEAD

View File

@@ -20,7 +20,7 @@ if(WIN32)
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
set(Boost_USE_STATIC_RUNTIME OFF)
get_WIN32_WINNT(ver)
add_definitions(-D_WIN32_WINNT=${ver})
endif()

View File

@@ -1,6 +1,6 @@
#
# Find the MySQL client includes and library
#
#
# This module defines
# MYSQL_INCLUDE_DIR, where to find mysql.h
@@ -95,7 +95,7 @@ find_path(MYSQL_INCLUDE_DIR
if( UNIX )
foreach(LIB ${MYSQL_ADD_LIBRARIES})
find_library( MYSQL_LIBRARY
find_library( MYSQL_LIBRARY
NAMES
mysql libmysql ${LIB}
PATHS
@@ -111,7 +111,7 @@ if( UNIX )
endif( UNIX )
if( WIN32 )
find_library( MYSQL_LIBRARY
find_library( MYSQL_LIBRARY
NAMES
libmysql
PATHS

View File

@@ -5,7 +5,7 @@
# READLINE_FOUND - TRUE if READLINE was found
FIND_PATH(READLINE_INCLUDE_DIR readline/readline.h)
FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
IF (READLINE_INCLUDE_DIR AND READLINE_LIBRARY)
SET(READLINE_FOUND TRUE)

View File

@@ -1,5 +1,5 @@
/* Copyright (C) 2009 Sun Microsystems, Inc
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
@@ -14,17 +14,17 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
/* Check stack direction (0-down, 1-up) */
int f(int *a)
int f(int *a)
{
int b;
return(&b > a)?1:0;
return(&b > a)?1:0;
}
/*
Prevent compiler optimizations by calling function
Prevent compiler optimizations by calling function
through pointer.
*/
volatile int (*ptr_f)(int *) = f;
int main()
int main()
{
int a;
return ptr_f(&a);

View File

@@ -312,7 +312,7 @@ class spell_sha_earth_shield : public SpellScriptLoader
amount = GetUnitOwner()->SpellHealingBonusTaken(caster, GetSpellInfo(), amount, HEAL);
//! WORKAROUND
// If target is affected by healing reduction, modifier is guaranteed to be negative
// If target is affected by healing reduction, modifier is guaranteed to be negative
// value (e.g. -50). To revert the effect, multiply amount with reciprocal of relative value:
// (100 / ((-1) * modifier)) * 100 = (-1) * 100 * 100 / modifier = -10000 / modifier
if (int32 modifier = GetUnitOwner()->GetMaxNegativeAuraModifier(SPELL_AURA_MOD_HEALING_PCT))