• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

[JASS] JassHelper inlining

Status
Not open for further replies.
I read somewhere that functions are only inlined if their arguments are used in order, and the function is only 1 line long. Does it work when the arguments are used more than once? Would this function inline, for example?

JASS:
function ModuloInt takes integer divisior, integer dividend returns integer
    return dividend - (dividend / divisor) * divisor
endfunction
 
Status
Not open for further replies.
Top