Clarify that the NextPowerOfTwo template is idempotent.

llvm-svn: 107286
This commit is contained in:
Duncan Sands 2010-06-30 15:29:46 +00:00
parent 7b90966d4a
commit 7764ae2c98
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public:
};
/// NextPowerOfTwo - This is a helper template that rounds N up to the next
/// power of two.
/// power of two (which means N itself if N is already a power of two).
template<unsigned N>
struct NextPowerOfTwo;