Skip to content

Commit

Permalink
adding exp warning to fuelfab
Browse files Browse the repository at this point in the history
  • Loading branch information
gidden committed May 21, 2015
1 parent 108a630 commit effd7a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/fuel_fab.cc
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ class TopupConverter : public cyclus::Converter<cyclus::Material> {
};

FuelFab::FuelFab(cyclus::Context* ctx)
: cyclus::Facility(ctx), fill_size(0), fiss_size(0), throughput(0) {}
: cyclus::Facility(ctx), fill_size(0), fiss_size(0), throughput(0) {
cyclus::Warn<cyclus::EXPERIMENTAL_WARNING>(
"the FuelFab archetype "
"is experimental");
}

void FuelFab::EnterNotify() {
cyclus::Facility::EnterNotify();
Expand Down

0 comments on commit effd7a2

Please sign in to comment.