fix a multiline comment warning
authorAdam Simpkins <simpkins@fb.com>
Wed, 17 Jan 2018 18:05:24 +0000 (10:05 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Wed, 17 Jan 2018 18:20:41 +0000 (10:20 -0800)
commit6c511999f92066ed84778bca4491c8d139a3195d
treefcc10ec2873204087a613da1b4e0323b06d52511
parentbdd9360c598d80d524de6780cd5be65af56d98fd
fix a multiline comment warning

Summary:
DeterministicScheduleTest.cpp contained several single-line C++ comments that
ended in a trailing backslash.  This makes the preprocessor treat the following
line as a comment as well, even if it does not start with `//`.  Newer versions
of gcc emit warnings about this.

This changes the comment in DeterministicScheduleTest.cpp to use `/* */` to
avoid this issue.

Reviewed By: siyengar

Differential Revision: D6735672

fbshipit-source-id: 162c735507a643ce0dbee58f1f054865237e1eba
folly/test/DeterministicScheduleTest.cpp