Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hirsch88/prcpp-my-string
String Class in C++. Exercise from FHNW
https://github.com/hirsch88/prcpp-my-string
Last synced: 11 days ago
JSON representation
String Class in C++. Exercise from FHNW
- Host: GitHub
- URL: https://github.com/hirsch88/prcpp-my-string
- Owner: hirsch88
- Created: 2016-03-29T21:12:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-11T05:35:55.000Z (over 8 years ago)
- Last Synced: 2024-10-16T03:41:12.419Z (about 1 month ago)
- Language: C++
- Size: 1.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# prcpp-my-string
String Class in C++. Exercise from FHNW.## Compiler Error
Unfortunately I could not use the following code, because I am working with the libc++ compiler.
```
m_string = shared_ptr(unique_ptr(new char[m_len]));
```![compiler-error](c++-compiler-error.png)
## Tests
![test-report](tests.png)