Skip to content

Instantly share code, notes, and snippets.

@sdasgup3
Created June 21, 2016 16:53
Show Gist options
  • Save sdasgup3/167ff88042c2cf4e7253b1257affe42d to your computer and use it in GitHub Desktop.
Save sdasgup3/167ff88042c2cf4e7253b1257affe42d to your computer and use it in GitHub Desktop.
void ensureAligned(int Alignment, HeapData* GlobalData) {
assert(isPowerOf2_32(Alignment) && Alignment > 0);
while (GlobalData->size() & (Alignment-1)) GlobalData->push_back(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment