Changeset 108481 in vbox for trunk/src/VBox/Runtime/r3
- Timestamp:
- Mar 7, 2025 5:02:28 PM (7 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167869
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/dir-posix.cpp
r106061 r108481 431 431 { 432 432 struct dirent *pResult = NULL; 433 #if RT_GNUC_PREREQ(4, 6) 433 #if RT_CLANG_PREREQ(3, 4) /* Needs to come first because clang also triggers on RT_GNUC_PREREQ() but doesn't work there. */ 434 # pragma clang diagnostic push 435 # pragma clang diagnostic ignored "-Wdeprecated-declarations" 436 #elif RT_GNUC_PREREQ(4, 6) 434 437 # pragma GCC diagnostic push 435 438 # pragma GCC diagnostic ignored "-Wdeprecated-declarations" 436 439 #endif 437 440 int rc = readdir_r(pDir->pDir, &pDir->Data, &pResult); 438 #if RT_GNUC_PREREQ(4, 6) 441 #if RT_CLANG_PREREQ(3, 4) 442 # pragma clang diagnostic pop 443 #elif RT_GNUC_PREREQ(4, 6) 439 444 # pragma GCC diagnostic pop 440 445 #endif
Note:
See TracChangeset
for help on using the changeset viewer.