Changeset 78051 in vbox for trunk/include/iprt
- Timestamp:
- Apr 9, 2019 10:08:39 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/path.h
r78048 r78051 715 715 /** The length of the component. */ 716 716 uint16_t cch; 717 } aComps[ 1];717 } aComps[RT_FLEXIBLE_ARRAY]; 718 718 } RTPATHPARSED; 719 719 /** Pointer to to a parsed path result. */ … … 798 798 const char *pszSuffix; 799 799 /** Array of component strings (variable size). */ 800 char *apszComps[ 1];800 char *apszComps[RT_FLEXIBLE_ARRAY]; 801 801 } RTPATHSPLIT; 802 802 /** Pointer to a split path buffer. */
Note:
See TracChangeset
for help on using the changeset viewer.