We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2a298e commit decb343Copy full SHA for decb343
1 file changed
src/root.zig
@@ -85,7 +85,7 @@ pub const TAError = error{
85
};
86
87
// Convert TA-Lib return code to Zig error
88
-pub fn convertRetCode(ret_code: c.TA_RetCode) TAError!void {
+fn convertRetCode(ret_code: c.TA_RetCode) TAError!void {
89
switch (ret_code) {
90
c.TA_SUCCESS => return,
91
c.TA_LIB_NOT_INITIALIZE => return TAError.LibNotInitialized,
0 commit comments