Skip to content

Commit e7e562a

Browse files
estshorterhollasch
authored andcommitted
Fix: Book2: Listing 15 and bvh.h: Add missing hittable_list.h include (#690)
1 parent 1b23ec0 commit e7e562a

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Change Log -- Ray Tracing in One Weekend
1212

1313
### _The Next Week_
1414
- Delete: remove unused u,v,w variables in initial `perlin::noise()` function (#684)
15+
- Fix: Listing 15 and `bvh.h`: Add missing `hittable_list.h` include (#690)
1516

1617

1718
----------------------------------------------------------------------------------------------------

books/RayTracingTheNextWeek.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,7 @@
862862

863863
#include "rtweekend.h"
864864
#include "hittable.h"
865+
#include "hittable_list.h"
865866

866867

867868
class bvh_node : public hittable {

src/TheNextWeek/bvh.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
#include "rtweekend.h"
1515

1616
#include "hittable.h"
17+
#include "hittable_list.h"
1718

1819
#include <algorithm>
1920

0 commit comments

Comments
 (0)