Remove obsolete MSVC check from pragma guard

git grep -h -B1 "^#\s*pragma once" | grep -v pragma | sort | uniq

is now clean.

[SVN r85952]
This commit is contained in:
Stephen Kelly
2013-09-26 13:02:51 +00:00
committed by Nathan Ridge
parent ebbfe65595
commit d1aea63c2f
32 changed files with 32 additions and 32 deletions

2
include/boost/range/algorithm.hpp Executable file → Normal file
View File

@ -19,7 +19,7 @@
// were originally written by Vladimir Prus'
// <ghost@cs.msu.su> code from Boost Wiki
#if defined(_MSC_VER) && _MSC_VER >= 1000
#if defined(_MSC_VER)
#pragma once
#endif