Skip to content

Commit c9dc5fc

Browse files
committed
Fixed error: extra qualification on member 'bvh_node'
1 parent f4b0c98 commit c9dc5fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TheNextWeek/bvh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
class bvh_node : public hittable {
2020
public:
21-
bvh_node::bvh_node(hittable_list& list, double time0, double time1)
21+
bvh_node(hittable_list& list, double time0, double time1)
2222
: bvh_node(list.objects, 0, list.objects.size(), time0, time1)
2323
{}
2424

0 commit comments

Comments
 (0)