Skip to content

Commit

Permalink
AppCode indentation settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitabobko committed Sep 15, 2023
1 parent d30a5c1 commit bb123a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/util/utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ func stringType(of some: Any) -> String {
}

@inlinable func errorT<T>(_ message: String = "") -> T {
Thread.callStackSymbols.forEach{ print($0) }
Thread.callStackSymbols.forEach { print($0) }
fatalError(message)
}

@inlinable func error(_ message: String = "") -> Never {
Thread.callStackSymbols.forEach{ print($0) }
Thread.callStackSymbols.forEach { print($0) }
fatalError(message)
}

@inlinable func TODO(_ message: String = "") -> Never {
Thread.callStackSymbols.forEach{ print($0) }
Thread.callStackSymbols.forEach { print($0) }
fatalError(message)
}

Expand Down

0 comments on commit bb123a3

Please sign in to comment.