Changeset de53138 in mainline for uspace/lib/cpp/include/cstddef
- Timestamp:
- 2018-07-05T21:41:21Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c71c171
- Parents:
- 6d8a63a
- git-author:
- Dzejrou <dzejrou@…> (2018-04-20 00:11:54)
- git-committer:
- Dzejrou <dzejrou@…> (2018-07-05 21:41:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/include/cstddef
r6d8a63a rde53138 1 1 /* 2 * Copyright (c) 201 7Jaroslav Jindrak2 * Copyright (c) 2018 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 32 32 #include "internal/common.hpp" 33 33 34 namespace std::hel 35 { 36 extern "C" { 37 #include <stddef.h> 38 } 39 } 40 41 34 42 namespace std 35 43 { 44 using nullptr_t = decltype(nullptr); 36 45 37 extern "C" { 38 #include <stddef.h> 46 using std::hel::size_t; 47 using std::hel::ptrdiff_t; 48 /* using std::hel::max_align_t; */ 39 49 } 40 50 41 using nullptr_t = decltype(nullptr); 42 43 } 51 using std::nullptr_t; 52 using std::hel::size_t; 53 using std::hel::ptrdiff_t; 54 /* using std::hel::max_align_t; */ 44 55 45 56 #endif
Note:
See TracChangeset
for help on using the changeset viewer.