CosmicMind / Graph

Graph is a semantic database that is used to create data-driven applications.
http://cosmicmind.com
MIT License
873 stars 72 forks source link

Fixed not compiling with swift 5 #162

Closed OrkhanAlikhanov closed 5 years ago

OrkhanAlikhanov commented 5 years ago

Fixed breaking change described in #160.

As stated in docs, String(stringInterpolationSegment:) should not be used directly and now swift 5 disallows calling it. It was just used to convert an Int to String in our case. Replaced it with normal string interpolation. Everyone should be happy now.