Skip to content

Commit

Permalink
removed unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
Code-Hex committed Jan 21, 2023
1 parent 957dfd2 commit 5af8329
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions virtualization_11.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,6 @@

#import "virtualization_11.h"

char *copyCString(NSString *nss)
{
const char *cc = [nss UTF8String];
char *c = calloc([nss length] + 1, 1);
strncpy(c, cc, [nss length]);
return c;
}

@implementation Observer
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context;
{
Expand Down

0 comments on commit 5af8329

Please sign in to comment.