davidsiaw / luacppinterface

A Simple C++ Interface to Lua
MIT License
168 stars 28 forks source link

boost dependency #1

Closed barisusakli closed 10 years ago

barisusakli commented 11 years ago

If the only dependency on boost is for std::tr1::function and std::tr1::shared_ptr wouldn't it be better to just use std::function and std::shared_ptr since they are part of the standard library now, and drop boost? Not that I have anything against boost but including it for something that already exists in the standard library seems overkill.

This is looking like a nice abstraction I will give it a shot.

davidsiaw commented 11 years ago

You are right. I only used it for convenience. Let me know how you get on!

davidsiaw commented 10 years ago

Someone has made a pull request to remove this, which I have merged