Skip to content

Commit f8cfa03

Browse files
committed
2 parents 1426f13 + 2c9786a commit f8cfa03

File tree

5 files changed

+5
-9
lines changed

5 files changed

+5
-9
lines changed

depends/install_deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#/bin/sh
1+
#!/bin/sh
2+
23
cd `dirname $0`
34
DEPENDS_DIR=`pwd`
45

@@ -33,4 +34,3 @@ cmake -DCMAKE_INSTALL_PREFIX=$GLFW_INSTALL_DIR -DBUILD_SHARED_LIBS=TRUE ..
3334
make && make install
3435

3536
cd $DEPENDS_DIR
36-

depends/install_mac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/sh
1+
#!/bin/sh
22

33
cd `dirname $0`
44
DEPENDS_DIR=`pwd`

depends/install_ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#/bin/sh
1+
#!/bin/sh
22

33
cd `dirname $0`
44
DEPENDS_DIR=`pwd`
55

6-
sh ./install_deps.sh
6+
sh ./install_deps.sh

examples/protonect/include/libfreenect2/depth_packet_processor.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ struct LIBFREENECT2_API DepthPacket
4444
size_t buffer_length;
4545
};
4646

47-
// explicit instantiation and export to make vsc++ happy
48-
template class LIBFREENECT2_API PacketProcessor<DepthPacket>;
4947
typedef PacketProcessor<DepthPacket> BaseDepthPacketProcessor;
5048

5149
class LIBFREENECT2_API DepthPacketProcessor : public BaseDepthPacketProcessor

examples/protonect/include/libfreenect2/rgb_packet_processor.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ struct LIBFREENECT2_API RgbPacket
4545
size_t jpeg_buffer_length;
4646
};
4747

48-
// explicit instantiation and export to make vsc++ happy
49-
template class LIBFREENECT2_API PacketProcessor<RgbPacket>;
5048
typedef PacketProcessor<RgbPacket> BaseRgbPacketProcessor;
5149

5250
class LIBFREENECT2_API RgbPacketProcessor : public BaseRgbPacketProcessor

0 commit comments

Comments
 (0)