Changeset 7dcce0a in mainline for uspace/lib/cpp/src/string.cpp
- Timestamp:
- 2019-01-16T18:07:45Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4248ce5
- Parents:
- cf9e949
- git-author:
- Jaroslav Jindrak <dzejrou@…> (2019-01-12 15:09:49)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2019-01-16 18:07:45)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/cpp/src/string.cpp
rcf9e949 r7dcce0a 1 1 /* 2 * Copyright (c) 201 8Jaroslav Jindrak2 * Copyright (c) 2019 Jaroslav Jindrak 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #include <cassert> 29 30 #include <string> 30 31 … … 34 35 { 35 36 // TODO: implement using stol once we have numeric limits 37 __unimplemented(); 36 38 return 0; 37 39 } … … 72 74 { 73 75 // TODO: implement using stol once we have numeric limits 76 __unimplemented(); 74 77 return 0; 75 78 } … … 78 81 { 79 82 // TODO: implement using stoul once we have numeric limits 83 __unimplemented(); 80 84 return 0; 81 85 } … … 84 88 { 85 89 // TODO: implement 90 __unimplemented(); 86 91 return 0.f; 87 92 } … … 90 95 { 91 96 // TODO: implement 97 __unimplemented(); 92 98 return 0.0; 93 99 } … … 96 102 { 97 103 // TODO: implement 104 __unimplemented(); 98 105 return 0.0l; 99 106 } … … 206 213 { 207 214 // TODO: implement 215 __unimplemented(); 208 216 return 0; 209 217 } … … 212 220 { 213 221 // TODO: implement 222 __unimplemented(); 214 223 return 0; 215 224 } … … 218 227 { 219 228 // TODO: implement 229 __unimplemented(); 220 230 return 0; 221 231 } … … 224 234 { 225 235 // TODO: implement 236 __unimplemented(); 226 237 return 0; 227 238 } … … 230 241 { 231 242 // TODO: implement 243 __unimplemented(); 232 244 return 0; 233 245 } … … 236 248 { 237 249 // TODO: implement 250 __unimplemented(); 238 251 return 0.f; 239 252 } … … 242 255 { 243 256 // TODO: implement 257 __unimplemented(); 244 258 return 0.0; 245 259 } … … 248 262 { 249 263 // TODO: implement 264 __unimplemented(); 250 265 return 0.0l; 251 266 } … … 254 269 { 255 270 // TODO: implement 271 __unimplemented(); 256 272 return wstring{}; 257 273 } … … 260 276 { 261 277 // TODO: implement 278 __unimplemented(); 262 279 return wstring{}; 263 280 } … … 266 283 { 267 284 // TODO: implement 285 __unimplemented(); 268 286 return wstring{}; 269 287 } … … 272 290 { 273 291 // TODO: implement 292 __unimplemented(); 274 293 return wstring{}; 275 294 } … … 278 297 { 279 298 // TODO: implement 299 __unimplemented(); 280 300 return wstring{}; 281 301 } … … 284 304 { 285 305 // TODO: implement 306 __unimplemented(); 286 307 return wstring{}; 287 308 } … … 290 311 { 291 312 // TODO: implement 313 __unimplemented(); 292 314 return wstring{}; 293 315 } … … 296 318 { 297 319 // TODO: implement 320 __unimplemented(); 298 321 return wstring{}; 299 322 } … … 302 325 { 303 326 // TODO: implement 327 __unimplemented(); 304 328 return wstring{}; 305 329 }
Note:
See TracChangeset
for help on using the changeset viewer.