mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 20:29:49 -05:00
use CM_NULLPTR
This commit is contained in:
committed by
Brad King
parent
b4b73f56a2
commit
1d6909a287
+16
-16
@@ -231,17 +231,17 @@ bool cmFileCommand::HandleReadCommand(std::vector<std::string> const& args)
|
||||
cmCommandArgumentGroup group;
|
||||
|
||||
cmCAString readArg(&argHelper, "READ");
|
||||
cmCAString fileNameArg(&argHelper, 0);
|
||||
cmCAString resultArg(&argHelper, 0);
|
||||
cmCAString fileNameArg(&argHelper, CM_NULLPTR);
|
||||
cmCAString resultArg(&argHelper, CM_NULLPTR);
|
||||
|
||||
cmCAString offsetArg(&argHelper, "OFFSET", &group);
|
||||
cmCAString limitArg(&argHelper, "LIMIT", &group);
|
||||
cmCAEnabler hexOutputArg(&argHelper, "HEX", &group);
|
||||
readArg.Follows(0);
|
||||
readArg.Follows(CM_NULLPTR);
|
||||
fileNameArg.Follows(&readArg);
|
||||
resultArg.Follows(&fileNameArg);
|
||||
group.Follows(&resultArg);
|
||||
argHelper.Parse(&args, 0);
|
||||
argHelper.Parse(&args, CM_NULLPTR);
|
||||
|
||||
std::string fileName = fileNameArg.GetString();
|
||||
if (!cmsys::SystemTools::FileIsFullPath(fileName.c_str())) {
|
||||
@@ -901,9 +901,9 @@ bool cmFileCommand::HandleDifferentCommand(
|
||||
*/
|
||||
|
||||
// Evaluate arguments.
|
||||
const char* file_lhs = 0;
|
||||
const char* file_rhs = 0;
|
||||
const char* var = 0;
|
||||
const char* file_lhs = CM_NULLPTR;
|
||||
const char* file_rhs = CM_NULLPTR;
|
||||
const char* var = CM_NULLPTR;
|
||||
enum Doing
|
||||
{
|
||||
DoingNone,
|
||||
@@ -958,7 +958,7 @@ struct cmFileCopier
|
||||
, MatchlessFiles(true)
|
||||
, FilePermissions(0)
|
||||
, DirPermissions(0)
|
||||
, CurrentMatchRule(0)
|
||||
, CurrentMatchRule(CM_NULLPTR)
|
||||
, UseGivenPermissionsFile(false)
|
||||
, UseGivenPermissionsDir(false)
|
||||
, UseSourcePermissions(true)
|
||||
@@ -1942,9 +1942,9 @@ bool cmFileCommand::HandleRPathChangeCommand(
|
||||
std::vector<std::string> const& args)
|
||||
{
|
||||
// Evaluate arguments.
|
||||
const char* file = 0;
|
||||
const char* oldRPath = 0;
|
||||
const char* newRPath = 0;
|
||||
const char* file = CM_NULLPTR;
|
||||
const char* oldRPath = CM_NULLPTR;
|
||||
const char* newRPath = CM_NULLPTR;
|
||||
enum Doing
|
||||
{
|
||||
DoingNone,
|
||||
@@ -2032,7 +2032,7 @@ bool cmFileCommand::HandleRPathRemoveCommand(
|
||||
std::vector<std::string> const& args)
|
||||
{
|
||||
// Evaluate arguments.
|
||||
const char* file = 0;
|
||||
const char* file = CM_NULLPTR;
|
||||
enum Doing
|
||||
{
|
||||
DoingNone,
|
||||
@@ -2096,8 +2096,8 @@ bool cmFileCommand::HandleRPathCheckCommand(
|
||||
std::vector<std::string> const& args)
|
||||
{
|
||||
// Evaluate arguments.
|
||||
const char* file = 0;
|
||||
const char* rpath = 0;
|
||||
const char* file = CM_NULLPTR;
|
||||
const char* rpath = CM_NULLPTR;
|
||||
enum Doing
|
||||
{
|
||||
DoingNone,
|
||||
@@ -2438,7 +2438,7 @@ public:
|
||||
|
||||
inline void release(void)
|
||||
{
|
||||
this->Easy = 0;
|
||||
this->Easy = CM_NULLPTR;
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -2934,7 +2934,7 @@ bool cmFileCommand::HandleUploadCommand(std::vector<std::string> const& args)
|
||||
::curl_global_cleanup();
|
||||
|
||||
fclose(fin);
|
||||
fin = NULL;
|
||||
fin = CM_NULLPTR;
|
||||
|
||||
if (!logVar.empty()) {
|
||||
std::string log;
|
||||
|
||||
Reference in New Issue
Block a user