Skip to content

Commit 96ce4ab

Browse files
author
Oleh Kulykov
committed
1734075853
1 parent 9aaeba8 commit 96ce4ab

9 files changed

+4
-12
lines changed

objc/PLzmaSDKDecoder.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@
4040
@property (nonatomic, weak) id<PLzmaSDKDecoderDelegate> delegate;
4141

4242
@end
43-

objc/PLzmaSDKEncoder.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@
4040
@property (nonatomic, weak) id<PLzmaSDKEncoderDelegate> delegate;
4141

4242
@end
43-

objc/PLzmaSDKInStream.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,3 @@
3737
@property (nonatomic, assign, readonly) const plzma::SharedPtr<plzma::InStream> * inStreamSPtr;
3838

3939
@end
40-

objc/PLzmaSDKItem.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,3 @@
3939
- (instancetype) initWithItemM:(plzma::SharedPtr<plzma::Item> *) item;
4040

4141
@end
42-

objc/PLzmaSDKOutStream.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,3 @@
4141
- (instancetype) initWithOutStreamMTh:(plzma::SharedPtr<plzma::OutStream> *) outStream;
4242

4343
@end
44-

objc/PLzmaSDKProgressDelegate.inl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,3 @@ public:
4949

5050
static std::shared_ptr<PLzmaSDKProgressDelegate> create(void * LIBPLZMA_NULLABLE decoder);
5151
};
52-

src/plzma_mutex.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,4 +242,3 @@ namespace plzma {
242242
#endif // LIBPLZMA_THREAD_UNSAFE
243243

244244
#endif // !__PLZMA_MUTEX_HPP__
245-

src/plzma_open_callback.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,3 @@ namespace plzma {
176176
}
177177

178178
} // namespace plzma
179-

swift/Path.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -480,14 +480,14 @@ extension plzma_path_timestamp {
480480
}
481481
}
482482

483-
extension plzma_path_timestamp: CustomStringConvertible {
483+
extension plzma_path_timestamp: @retroactive CustomStringConvertible {
484484

485485
public var description: String {
486486
return "Creation: \(creationDate)\nLast access: \(lastAccessDate)\nLast modification: \(lastModificationDate)"
487487
}
488488
}
489489

490-
extension plzma_path_timestamp: CustomDebugStringConvertible {
490+
extension plzma_path_timestamp: @retroactive CustomDebugStringConvertible {
491491

492492
public var debugDescription: String {
493493
return self.description
@@ -512,14 +512,14 @@ extension plzma_path_stat {
512512
}
513513
}
514514

515-
extension plzma_path_stat: CustomStringConvertible {
515+
extension plzma_path_stat: @retroactive CustomStringConvertible {
516516

517517
public var description: String {
518518
return "Size: \(size)\n\(timestamp.description)"
519519
}
520520
}
521521

522-
extension plzma_path_stat: CustomDebugStringConvertible {
522+
extension plzma_path_stat: @retroactive CustomDebugStringConvertible {
523523

524524
public var debugDescription: String {
525525
return self.description

0 commit comments

Comments
 (0)