Merge pull request #310 from M2tM/patch-1

nullify_shared_ptr changing == to = in documentation.
This commit is contained in:
Jason Turner 2016-12-03 14:01:01 -07:00 committed by GitHub
commit 78f885ec61

View File

@ -222,7 +222,7 @@ Conversion to `std::shared_ptr<T> &` is supported for function calls, but if you
```cpp
// ok this is supported, you can register it with chaiscript engine
void nullify_shared_ptr(std::shared_ptr<int> &t) {
t == nullptr
t = nullptr
}
```