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