Skip to content

Commit c60a2ab

Browse files
committed
Fix calls, and use inline in Ray
1 parent dd22b0a commit c60a2ab

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

include/AudioStream.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@ class AudioStream : public ::AudioStream {
5353
GETTERSETTER(unsigned int, SampleSize, sampleSize)
5454
GETTERSETTER(unsigned int, Channels, channels)
5555

56-
/**
57-
*
5856
AudioStream& operator=(const ::AudioStream& stream) {
5957
set(stream);
6058
return *this;

include/Ray.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Ray : public ::Ray {
8989
}
9090

9191
private:
92-
void set(const ::Ray& ray) {
92+
inline void set(const ::Ray& ray) {
9393
position = ray.position;
9494
direction = ray.direction;
9595
}

0 commit comments

Comments
 (0)