mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Suppress GCC 6 warning about self-comparison
Reviewed-by: Thomas Munro <thomas.munro@enterprisedb.com>
This commit is contained in:
@ -86,7 +86,11 @@ skip_drive(const char *path)
|
|||||||
bool
|
bool
|
||||||
has_drive_prefix(const char *path)
|
has_drive_prefix(const char *path)
|
||||||
{
|
{
|
||||||
|
#ifdef WIN32
|
||||||
return skip_drive(path) != path;
|
return skip_drive(path) != path;
|
||||||
|
#else
|
||||||
|
return false;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user