mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
Update single.py to always use '/' and with prev commit
This commit is contained in:
parent
366937830c
commit
60d56be14c
|
@ -85,7 +85,7 @@ def get_version():
|
|||
def process_file(filename, out):
|
||||
global includes
|
||||
filename = os.path.normpath(filename)
|
||||
relativefilename = filename.replace(script_path + os.sep, "")
|
||||
relativefilename = filename.replace(script_path + os.sep, "").replace("\\", "/")
|
||||
|
||||
if filename in includes:
|
||||
return
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
// This file was generated with a script.
|
||||
// Generated 2016-08-17 18:29:14.217062 UTC
|
||||
// This header was generated with sol v2.11.3 (revision 7903e1e)
|
||||
// Generated 2016-08-17 18:29:29.153274 UTC
|
||||
// This header was generated with sol v2.11.3 (revision 3669378)
|
||||
// https://github.com/ThePhD/sol2
|
||||
|
||||
#ifndef SOL_SINGLE_INCLUDE_HPP
|
||||
|
|
Loading…
Reference in New Issue
Block a user