Skip to content

Commit 6efa862

Browse files
authored
Merge branch 'dev-patch' into fix-issue-692
2 parents 11fa103 + e7e562a commit 6efa862

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ 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: In `bvh.h`, add missing `hittable_list.h` include (#690)
1516
- Fix: Listing 33, 34, 38: Change implicit casts to explicit ones (#692)
1617

18+
1719
----------------------------------------------------------------------------------------------------
1820
# v3.2.0 (2020-07-18)
1921

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 {

books/acknowledgments.md.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
- Phil Cristensen
5454
- [Ronald Wotzlaw](https://github.com/ronaldfw)
5555
- [Shaun P. Lee](https://github.com/shaunplee)
56+
- [Shota Kawajiri](https://github.com/estshorter)
5657
- Tatsuya Ogawa
5758
- Thiago Ize
5859
- Vahan Sosoyan

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)